Started working on package-level documentation

This commit is contained in:
2025-01-30 11:19:53 -05:00
parent dbc9fe2c3b
commit 0ac39bfb7b

9
regex/doc.go Normal file
View File

@@ -0,0 +1,9 @@
/*
Package regex implements an NFA-based engine to search for
regular expressions in strings. The engine does not use backtracking,
and is therefore not vulnerable to catastrophic backtracking. The regex
syntax supported (a variation of Golang's) is specified in the Syntax section.
*/
package regex