From b5188672208c3166a4444423996af62f76d0afb3 Mon Sep 17 00:00:00 2001 From: Rod Elias Date: Thu, 21 Feb 2019 23:41:43 -0300 Subject: [PATCH] fix typos --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a49d39499d..b060a29e92 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Or use the interactive shell: # Disclaimer - RustPython is in a development phase and should not used in production or a fault intolerant setting. + RustPython is in a development phase and should not be used in production or a fault intolerant setting. Our current build supports only a subset of Python syntax. @@ -55,7 +55,7 @@ $ cargo doc --no-deps --all # Excluding all dependencies Documentation HTML files can then be found in the `target/doc` directory. -If you wish to update the online documentation. Push directly to the `release` branch (or ask a maintainer to do so), this will trigger a Travis build that updates the documentation and WebAssembly demo page. +If you wish to update the online documentation, push directly to the `release` branch (or ask a maintainer to do so). This will trigger a Travis build that updates the documentation and WebAssembly demo page. # Code organization @@ -79,7 +79,7 @@ With that in mind, please note this project is maintained by volunteers, some of Most tasks are listed in the [issue tracker](https://github.com/RustPython/RustPython/issues). Check issues labeled with `good first issue` if you wish to start coding. -Another approach is to checkout the sourcecode: builtin functions and object methods are often the simplest +Another approach is to checkout the source code: builtin functions and object methods are often the simplest and easiest way to contribute. You can also simply run @@ -97,7 +97,7 @@ $ pipenv install $ pipenv run pytest -v ``` -There also are some unittests, you can run those will cargo: +There also are some unit tests, you can run those will cargo: ```shell $ cargo test --all