1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-10 21:35:45 +02:00

lex: follow convention of colons at end of line

This commit is contained in:
Liam McMenemie 2017-12-11 14:07:57 +00:00
parent 5ba8bc61f4
commit 015000ee03

View file

@ -3,10 +3,10 @@
> Lexical analyser generator.
> Given a lexical analyser, generates C code implementing it.
- Generate analyser from Lex file.
- Generate analyser from Lex file:
`lex {{path/to/example.l}}`
- Compile a C file generated by lex.
- Compile a C file generated by lex:
`cc {{path/to/lex.yy.c}} -o {{example}}`