diff --git a/automata/automata.go b/automata/automata.go index 0083474..f116bb1 100644 --- a/automata/automata.go +++ b/automata/automata.go @@ -1,4 +1,5 @@ -// Package automata provides data structures and algorithms for working with finite automata, a.k.a. finite state machines. +// Package automata provides data structures and algorithms for working with finite automata, +// also known as finite state machines. package automata import ( diff --git a/generic/generic.go b/generic/generic.go index 17e1b88..5ef96ec 100644 --- a/generic/generic.go +++ b/generic/generic.go @@ -1,3 +1,4 @@ +// Package generic provides types, interfaces, and functions to support generic programming use cases. package generic import "golang.org/x/exp/constraints"