From 8196ab379495ab00c11b74b55b6f2fabd99ab351 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Mon, 20 Sep 2021 23:01:35 -0400 Subject: Updates and fixes for the book. --- documentation/book/the_lux_programming_language/appendix_g.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'documentation/book/the_lux_programming_language/appendix_g.md') diff --git a/documentation/book/the_lux_programming_language/appendix_g.md b/documentation/book/the_lux_programming_language/appendix_g.md index 9d6505c77..3f8113057 100644 --- a/documentation/book/the_lux_programming_language/appendix_g.md +++ b/documentation/book/the_lux_programming_language/appendix_g.md @@ -27,7 +27,7 @@ A good example of text parsers being used is the `library/lux/data/format/json` --- -However, programmers coming from other programming languages may be familiar with a different approach to test processing that has been very popular for a number of years now: regular expressions. +However, programmers coming from other programming languages may be familiar with a different approach to text processing that has been very popular for a number of years now: regular expressions. Regular expressions offer a short syntax to building text parsers that is great for writing quick text-processing tools. @@ -35,7 +35,7 @@ Lux also offers support for this style in its `library/lux/data/text/regex` modu The `regex` macro, in turn, compiles the given syntax into a text parser, which means you can combine both approaches, for maximum flexibility. -Here are some samples for regular expressions: +Here are some examples of regular expressions: ```clojure ... Literals -- cgit v1.2.3