Fix typo in "why_libcst.rst" file.

This commit is contained in:
Thomas Mansencal 2019-11-09 19:52:07 +13:00 committed by jimmylai
parent cda91dfaae
commit 761c33f2dd

View file

@ -190,7 +190,7 @@ Concrete Syntax Trees are good for operations that don't significantly change th
LibCST
======
LibCST takes a compromise between the two formats outlined above. Like a CST, LibCST preserves all whitespace and can be reprinted exactly. Like an AST, LibCST parses source into nodes that represent the semtantics of the code.
LibCST takes a compromise between the two formats outlined above. Like a CST, LibCST preserves all whitespace and can be reprinted exactly. Like an AST, LibCST parses source into nodes that represent the semantics of the code.
.. code-block:: python