diff options
author | Ana Krivokapic <akrivokapic1@gmail.com> | 2014-05-26 18:43:47 +0200 |
---|---|---|
committer | Ana Krivokapic <akrivoka@redhat.com> | 2014-05-26 18:44:58 +0200 |
commit | d8db3d7275f9dfac3e865ec0dfac92c941399e51 (patch) | |
tree | 18495982b87d4bb56f1bfa4ae5156aef5b8d958e | |
parent | cf4c8e71d8a639c53bd06278b5384c45cc97b44a (diff) | |
download | pint-d8db3d7275f9dfac3e865ec0dfac92c941399e51.tar.gz |
Fixed typos in comments and docs
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | docs/index.rst | 4 | ||||
-rw-r--r-- | docs/tutorial.rst | 2 | ||||
-rw-r--r-- | pint/unit.py | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -7,7 +7,7 @@ It allows arithmetic operations between them and conversions from and to different units. It is distributed with a comprehensive list of physical units, prefixes -and constants. Due to it's modular design, you to extend (or even rewrite!) +and constants. Due to its modular design, you to extend (or even rewrite!) the complete list without changing the source code. It has a complete test coverage. It runs in Python 2.7 and 3.X diff --git a/docs/index.rst b/docs/index.rst index bb14dca..39682eb 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -9,7 +9,7 @@ Pint: a Python units library Pint is Python package to define, operate and manipulate **physical quantities**: the product of a numerical value and a unit of measurement. It allows arithmetic operations between them and conversions from and to different units. -It is distributed with a comprehensive list of physical units, prefixes and constants. Due to it's modular design, you can extend (or even rewrite!) the complete list without changing the source code. +It is distributed with a comprehensive list of physical units, prefixes and constants. Due to its modular design, you can extend (or even rewrite!) the complete list without changing the source code. It has a complete test coverage. It runs in Python 2.6+ and 3.2+ with no other dependency. It licensed under BSD. @@ -37,7 +37,7 @@ Extended conversion flags are given to provide symbolic, latex and pretty format **Small codebase**: easy to maintain codebase with a flat hierarchy. -**Dependency free**: it depends only on Python and it's standard library. +**Dependency free**: it depends only on Python and its standard library. **Python 2 and 3**: a single codebase that runs unchanged in Python 2.7+ and Python 3.0+. diff --git a/docs/tutorial.rst b/docs/tutorial.rst index a82765b..ccfe0f1 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -74,7 +74,7 @@ If you want to convert in-place (i.e. without creating another object), you can >>> print(speed) 7086.614173228345 inch / minute -If you ask Pint to perform and invalid conversion: +If you ask Pint to perform an invalid conversion: .. doctest:: diff --git a/pint/unit.py b/pint/unit.py index 6bb043e..21ad20f 100644 --- a/pint/unit.py +++ b/pint/unit.py @@ -614,7 +614,7 @@ class UnitRegistry(object): >>> with ureg.context('one'): ... pass - If the context has an argument, you can specify it's value as a keyword + If the context has an argument, you can specify its value as a keyword argument:: >>> with ureg.context('one', n=1): |