Compare commits

...

2 Commits

Author SHA1 Message Date
Elara c6fb3e8489 Fix comment 2023-07-17 06:38:03 -07:00
Elara 23df260dfd Fix README badge 2023-07-17 06:37:39 -07:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# pcre
[![Go Reference](https://pkg.go.dev/badge/go.arsenm.dev/pcre.svg)](https://pkg.go.dev/go.arsenm.dev/pcre)
[![Go Reference](https://pkg.go.dev/badge/go.elara.ws/pcre.svg)](https://pkg.go.dev/go.elara.ws/pcre)
This package provides a CGo-free port of the PCRE2 regular expression library. The [lib](lib) directory contains source code automatically translated from PCRE2's C source. This package wraps that code and provides an interface as close as possible to Go's stdlib [regexp](https://pkg.go.dev/regexp) package

View File

@ -622,7 +622,7 @@ type CalloutBlock struct {
// CalloutBacktrack
// This is set if there has been a matching backtrack since the previous callout, or since the start of matching if this is the first callout from a pcre2_match() run.
//
// Both bits are set when a backtrack has caused a "bumpalong" to a new starting position in the subject. Output
// Both bits are set when a backtrack has caused a "bumpalong" to a new starting position in the subject.
CalloutFlags CalloutFlags
}