This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new b91951a minor tweak
b91951a is described below
commit b91951a6f58c4c3407881e97e2ea28adcacb11ca
Author: Paul King <[email protected]>
AuthorDate: Sun Nov 24 17:53:53 2024 +1000
minor tweak
---
site/src/site/blog/groovy-lucene.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/site/src/site/blog/groovy-lucene.adoc
b/site/src/site/blog/groovy-lucene.adoc
index 06b67ad..0fe78da 100644
--- a/site/src/site/blog/groovy-lucene.adoc
+++ b/site/src/site/blog/groovy-lucene.adoc
@@ -13,7 +13,7 @@ information we require from the original source
(https://asciidoc.org/[AsciiDoc]
We'll first look at how we can find project references using regular
expressions
and then using https://lucene.apache.org/[Apache Lucene].
-== Finding project names with a regex
+== A regular expression for project names
For the sake of this post, let's assume that project references will
include the word "Apache" followed by the project name. To make it more
@@ -58,7 +58,7 @@ We've used Groovy's multiline slashy string to save having to
escape backslashes
We've also enabled regex whitespace and comments to explain the regex.
Feel free to make a compact (long) one-liner without comments if you prefer.
-== Finding project names using regex matching
+== Collecting project name statistics using regex matching
With our regex sorted, let's look at how you could use a Groovy matcher
to find all the project names. First we'll define one other common constant,