From a21fec3cf2d2575d8e44787ecaade140198fd99d Mon Sep 17 00:00:00 2001 From: yhirose Date: Wed, 17 Mar 2021 10:21:03 -0400 Subject: [PATCH] Updated README and LICENSE --- LICENSE | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 2fb2c65..c3510b2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ 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 of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 12d98a2..6d94fc0 100644 --- a/README.md +++ b/README.md @@ -335,7 +335,7 @@ S <- '(' ↑ P ')' / '"' ↑ P '"' / P 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 --------------------------- @@ -713,4 +713,4 @@ Sample codes License ------- -MIT license (© 2020 Yuji Hirose) +MIT license (© 2021 Yuji Hirose)