From af5f06f2630d1c74b809652c6553689efa827d4d Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Tue, 30 Oct 2012 17:56:52 -0700 Subject: [PATCH] remove todos --- examples/regular-expressions/regular-expressions.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/regular-expressions/regular-expressions.go b/examples/regular-expressions/regular-expressions.go index 8d8b83e..a5a27e6 100644 --- a/examples/regular-expressions/regular-expressions.go +++ b/examples/regular-expressions/regular-expressions.go @@ -74,6 +74,3 @@ func main() { out := r.ReplaceAllFunc(in, bytes.ToUpper) fmt.Println(string(out)) } - -// todo: Find(All)?(String)?(Submatch)?(Index)? -// todo: Examples of regular expressions in #golang: https://gobyexample.com/regular-expressions One of the best areas for a "by example" approach IMO.