summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2021-10-02 00:23:32 -0500
committerptmcg <ptmcg@austin.rr.com>2021-10-02 00:23:32 -0500
commit36ebaa2e0c73189efb39c642e88d8e636342e344 (patch)
tree5c566e719ee42a8e94f849f310e9298a045151be /docs
parent09b2a151f054953617dd1d07398d9fcbf899240f (diff)
downloadpyparsing-git-36ebaa2e0c73189efb39c642e88d8e636342e344.tar.gz
Fix typos in whats_new_in_3_0_0.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/whats_new_in_3_0_0.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/whats_new_in_3_0_0.rst b/docs/whats_new_in_3_0_0.rst
index b34df01..a3aff0c 100644
--- a/docs/whats_new_in_3_0_0.rst
+++ b/docs/whats_new_in_3_0_0.rst
@@ -208,7 +208,7 @@ For this code::
for match in locatedExpr(wd).search_string("ljsdf123lksdjjf123lkkjj1222"):
print(match)
-the docs for ``locaatedExpr`` show this output::
+the docs for ``locatedExpr`` show this output::
[[0, 'ljsdf', 5]]
[[8, 'lksdjjf', 15]]
@@ -482,13 +482,13 @@ API Changes
- ``camelCase`` names have been converted to PEP-8 ``snake_case`` names.
- Method arguments that were camel case have also been replaced with
- snake case versions.
+ Method names and arguments that were camel case (such as ``parseString``)
+ have been replaced with PEP-8 snake case versions (``parse_string``).
Backward-compatibility synonyms for all names and arguments have
been included, to allow parsers written using the old names to run
without change. The synonyms will be removed in a future release.
- New parser code should be written using the new camel case names.
+ New parser code should be written using the new PEP-8 snake case names.
============================== ================================
Name Previous name