summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2019-07-15 23:48:16 -0500
committerPaul McGuire <ptmcg@austin.rr.com>2019-07-15 23:48:16 -0500
commitde00f571f40a7e6478e7446ec1bcdb7472af32ee (patch)
tree0b93f43e617b22c2aa7ccb5b2d4e762351cb5df1
parent6ea260a4211da88f3d28fd6266e6765a6c209baf (diff)
downloadpyparsing-git-de00f571f40a7e6478e7446ec1bcdb7472af32ee.tar.gz
Missing bits in CONTRIBUTING file
-rw-r--r--CONTRIBUTING.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 70715d6..7b19d7a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -29,9 +29,10 @@ If you have a question on using pyparsing, there are a number of resources avail
and Python features.
- [submit an issue](https://github.com/pyparsing/pyparsing/issues) - If you have a problem with pyparsing that looks
- like an actual bug, please submit an issue on GitHub. Some pyparsing behavior may be counter-intuitive, so try to
- review some of the other resources first, or some of the other open and closed issues. Or post your question on SO
- or reddit. But don't wait until you are desperate and frustrated - just ask! :)
+ like an actual bug, or have an idea for a feature to add to pyaprsing please submit an issue on GitHub. Some
+ pyparsing behavior may be counter-intuitive, so try to review some of the other resources first, or some of the
+ other open and closed issues. Or post your question on SO or reddit. But don't wait until you are desperate and
+ frustrated - just ask! :)
## Submitting changes
@@ -106,7 +107,7 @@ These coding styles are encouraged whether submitting code for core pyparsing or
any_keyword = pp.MatchFirst(pp.Keyword(kw)
for kw in python_keywords))
-- Learn [The Classic Blunders]([http://](https://github.com/pyparsing/pyparsing/wiki/TheClassicBlunders)) and
+- Learn [The Classic Blunders](https://github.com/pyparsing/pyparsing/wiki/The-Classic-Blunders) and
how to avoid them when developing new examples.
- New features should be accompanied with updates to unitTests.py and a bullet in the CHANGES file.