Made a few spelling and grammar corrections/adjustments to the docs under guide.

This commit is contained in:
cwandrews
2017-10-01 20:16:24 -04:00
parent e38ce3cd11
commit c1a5750b60
4 changed files with 8 additions and 8 deletions

View File

@ -22,7 +22,7 @@ underscores and lowercase names:
def uppercase(s: str) -> str:
return s.upper()
If you're naming something which is configurable, that will need to be instanciated or called to obtain something that
If you're naming something which is configurable, that will need to be instantiated or called to obtain something that
can be used as a graph node, then use camelcase names:
.. code-block:: python