Fix a few typos in docs.

This commit is contained in:
Jennifer Taylor 2020-01-08 18:03:40 -08:00 committed by Jennifer Taylor
parent 5d7d1a6fc4
commit 92050fac39

View file

@ -87,7 +87,7 @@ So, you can write something similar to the following::
@staticmethod
def add_args(arg_parser: argparse.ArgumentParser) -> None:
# Add command-line args that a codemodd user can specify for running this
# Add command-line args that a user can specify for running this
# codemod.
arg_parser.add_argument(
"--string",
@ -142,7 +142,7 @@ codemod by running the following command::
Notice that along with the default arguments, the ``--string`` and ``--constant``
arguments are present in the help, and the command-line description has been updated
with the codemod's description string. You'' notice that the codemod also shows up
with the codemod's description string. You'll notice that the codemod also shows up
on ``libcst.tool list``.
----------------