summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2020-04-15 07:04:18 -0500
committerDavid Beazley <dave@dabeaz.com>2020-04-15 07:04:18 -0500
commit01e19f5dbd115f2a02e62a0b8e5a9b8295afc09d (patch)
tree5e0338a27f4fddbfd514fe151a4c9f80c75e4e2e
parent001fb206e9cbe5fea5c81924cc854984e6984131 (diff)
downloadply-01e19f5dbd115f2a02e62a0b8e5a9b8295afc09d.tar.gz
Fix typos
-rw-r--r--docs/ply.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ply.rst b/docs/ply.rst
index 2bad85a..65cdf74 100644
--- a/docs/ply.rst
+++ b/docs/ply.rst
@@ -2642,10 +2642,10 @@ execution.
Using Python -OO Mode
---------------------
-Because of PLY's reliance on doc-strings, it is not compatible with
-`-OO` mode of the interpreter (which strings doc strings). If you
+Because of PLY's reliance on docstrings, it is not compatible with
+`-OO` mode of the interpreter (which strips docstrings). If you
want to support this, you'll need to write a decorator or some other
-tool to attach doc strings to functions. For example:
+tool to attach docstrings to functions. For example:
def _(doc):
def decorate(func):