From b7737fba39f182b5b639b50c42b9d387c302222c Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sun, 3 Nov 2024 13:20:26 +0000 Subject: [PATCH] Tweak README --- README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index 9cede98..52a9c52 100644 --- a/README +++ b/README @@ -7,8 +7,8 @@ so here we are. Grammar -This engine is not going to be strictly supporting any standard -syntax; the expression syntax I intend to support follows. +The engine does not support any specific standard's syntax, unless by +coincidence. The grammar I've implemented for expressions is: regex ::= sequence ( '|' sequence )* sequence ::= term+ @@ -23,7 +23,7 @@ syntax; the expression syntax I intend to support follows. The build uses CMake. There are two scripts, build.sh and test.sh, which will (much to everybody's shock) build the project and run the -tests. I use Clang but the code is ISO C11, it should compile just +tests. I use Clang but the code is ISO C11 so it should compile just fine with GCC. You might need to faff with CMakeLists.txt to get it to work with another compiler due to command-line flag nonsense.