Skip to content

Commit

Permalink
added doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jlangch committed Jul 26, 2022
1 parent dc96d1e commit c109778
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ public class RegexFunctions {
"Returns an instance of `java.util.regex.Pattern`.\n\n" +
"Patterns are immutable and are safe for use by multiple " +
"concurrent threads! \n\n" +
"JavaDoc: [Pattern](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html)")
"Alternatively the reader macro for regex patterns can be used to " +
"define a pattern: `#\"[0-9+]\"`\n\n" +
"JavaDoc: [Pattern](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html)")
.examples("(regex/pattern \"[0-9]+\")")
.seeAlso("regex/matcher", "regex/matches", "regex/find", "regex/find-all")
.build()
Expand Down

0 comments on commit c109778

Please sign in to comment.