Skip to content

Commit 84b3a6d

Browse files
committed
fix typo in readme
1 parent cb19a9a commit 84b3a6d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ $ ./test
3939
(?:something)
4040
```
4141

42-
The project uses `cmake` as the builing system. It's especially useful for development in Visual Studio in Windows.
43-
4442
## License
4543

4644
MIT.
@@ -54,7 +52,7 @@ MIT.
5452

5553
First of all, it's designed to be a header-only library. Thus everything are written in the header files (`.hpp`). Ideally users only need to `#include <spre/spre.hpp>`.
5654

57-
The library is written as a light-weight compiler-like thing, although SRL is a DSL and does not have control flow (as a subset of Regex) thus could not be considered turing-complete. As a result, this library has lexer and parser and code generator. This library has specific lexer instead of using `yacc`. The code is written following the tutorials from [llvm](http://llvm.org/docs/tutorial/LangImpl02.html) and [@](http://frozengene.github.io/blog/compiler/2014/08/10/compiler_tutorial_03/).
55+
The library is written as a light-weight compiler-like thing, although SRL is a DSL and does not have control flow (as a subset of Regex) thus could not be considered turing-complete. As a result, this library has lexer and parser and code generator. This library has specific lexer instead of using `yacc`. The code is written following the tutorials from [llvm](http://llvm.org/docs/tutorial/LangImpl02.html) and [@frozengene](http://frozengene.github.io/blog/compiler/2014/08/10/compiler_tutorial_03/).
5856

5957
The structure:
6058

0 commit comments

Comments
 (0)