Updated README and LICENSE

This commit is contained in:
yhirose 2021-03-17 10:21:03 -04:00
parent b85d8c89ce
commit a21fec3cf2
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2020 yhirose Copyright (c) 2021 yhirose
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -335,7 +335,7 @@ S <- '(' ↑ P ')' / '"' ↑ P '"' / P
P <- 'a' / 'b' / 'c' P <- 'a' / 'b' / 'c'
``` ```
When we parse `(z` with the above grammar, we don't have to backtrack in `S` after `(` is matched because a cut operator is inserted there. When we parse `(z` with the above grammar, we don't have to backtrack in `S` after `(` is matched, because a cut operator is inserted there.
Parameterized Rule or Macro Parameterized Rule or Macro
--------------------------- ---------------------------
@ -713,4 +713,4 @@ Sample codes
License License
------- -------
MIT license (© 2020 Yuji Hirose) MIT license (© 2021 Yuji Hirose)