summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKian-Meng Ang <kianmeng@cpan.org>2022-01-27 08:26:28 +0800
committerKian-Meng Ang <kianmeng@cpan.org>2022-01-27 08:26:28 +0800
commit471b19d2aa799cd73bded23379e864dd35bec2b6 (patch)
tree26edd4638ab349b8c685aa645fbd9fb522e0cd89 /docs
parentf716afc81d4c9ded08b23d376612e1491d3ea5da (diff)
downloadpsutil-471b19d2aa799cd73bded23379e864dd35bec2b6.tar.gz
Fix typos
Diffstat (limited to 'docs')
-rw-r--r--docs/DEVGUIDE.rst4
-rw-r--r--docs/index.rst10
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/DEVGUIDE.rst b/docs/DEVGUIDE.rst
index cb9545bc..384f8b25 100644
--- a/docs/DEVGUIDE.rst
+++ b/docs/DEVGUIDE.rst
@@ -32,7 +32,7 @@ Once you have a compiler installed:
make uninstall
make help
-- if you're working on a new feature and you whish to compile & test it "on the
+- if you're working on a new feature and you wish to compile & test it "on the
fly" from a test script, this is a quick & dirty way to do it:
.. code-block:: bash
@@ -115,7 +115,7 @@ Unit tests are automatically run on every ``git push`` on **Linux**, **macOS**,
.. image:: https://img.shields.io/appveyor/ci/giampaolo/psutil/master.svg?maxAge=3600&label=Windows
:target: https://ci.appveyor.com/project/giampaolo/psutil
-OpenBSD, NetBSD, AIX and Solaris does not have continuos test integration.
+OpenBSD, NetBSD, AIX and Solaris does not have continuous test integration.
Documentation
-------------
diff --git a/docs/index.rst b/docs/index.rst
index 6df7ccef..38fb7e98 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1100,7 +1100,7 @@ Process class
Here's a list of methods which can take advantage of the speedup depending
on what platform you're on.
- In the table below horizontal emtpy rows indicate what process methods can
+ In the table below horizontal empty rows indicate what process methods can
be efficiently grouped together internally.
The last column (speedup) shows an approximation of the speedup you can get
if you call all the methods together (best case scenario).
@@ -1193,8 +1193,8 @@ Process class
.. versionadded:: 4.0.0
.. versionchanged:: 5.3.0 added SunOS support
- .. versionchanged:: 5.6.3 added AIX suport
- .. versionchanged:: 5.7.3 added BSD suport
+ .. versionchanged:: 5.6.3 added AIX support
+ .. versionchanged:: 5.7.3 added BSD support
.. method:: create_time()
@@ -1593,7 +1593,7 @@ Process class
Return a named tuple with variable fields depending on the platform
representing memory information about the process.
- The "portable" fields available on all plaforms are `rss` and `vms`.
+ The "portable" fields available on all platforms are `rss` and `vms`.
All numbers are expressed in bytes.
+---------+---------+-------+---------+-----+------------------------------+
@@ -2539,7 +2539,7 @@ FAQs
====
* Q: Why do I get :class:`AccessDenied` for certain processes?
-* A: This may happen when you query processess owned by another user,
+* A: This may happen when you query processes owned by another user,
especially on macOS (see `issue #883`_) and Windows.
Unfortunately there's not much you can do about this except running the
Python process with higher privileges.