diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-01 13:38:45 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-01 13:38:45 +0300 |
commit | 8ad1659f686ab8893f2338609cd906c524fad274 (patch) | |
tree | c348c44acd91d124b3c8f4c19a124a0c2e8511c7 /docs/library/sys.rst | |
parent | 7781caf8d3202ff7bda2b9e3dd2e54469f00b82c (diff) | |
download | micropython-8ad1659f686ab8893f2338609cd906c524fad274.tar.gz micropython-8ad1659f686ab8893f2338609cd906c524fad274.zip |
docs/sys: Make module variable descriptions proper sentences.
Diffstat (limited to 'docs/library/sys.rst')
-rw-r--r-- | docs/library/sys.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/library/sys.rst b/docs/library/sys.rst index 5ab6420591..237ebaf91f 100644 --- a/docs/library/sys.rst +++ b/docs/library/sys.rst @@ -27,11 +27,11 @@ Constants .. data:: argv - a mutable list of arguments this program started with + A mutable list of arguments the current program was started with. .. data:: byteorder - the byte order of the system ("little" or "big") + The byte order of the system ("little" or "big"). .. data:: modules @@ -40,7 +40,7 @@ Constants .. data:: path - a mutable list of directories to search for imported modules + A mutable list of directories to search for imported modules. .. data:: platform @@ -50,20 +50,20 @@ Constants .. data:: stderr - standard error stream + Standard error stream. .. data:: stdin - standard input stream + Standard input stream. .. data:: stdout - standard output stream + Standard output stream. .. data:: version - Python language version that this implementation conforms to, as a string + Python language version that this implementation conforms to, as a string. .. data:: version_info - Python language version that this implementation conforms to, as a tuple of ints + Python language version that this implementation conforms to, as a tuple of ints. |