diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2021-12-21 22:23:54 -0800 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2021-12-23 12:42:47 -0700 |
commit | 32211146e12c7099482a719e07a52800ae7e87bc (patch) | |
tree | 2496149bf8455c1598980b1ac7813786e26da164 /Documentation | |
parent | 8ac383b4db7a854cf92a2ee1d1cbc9d0b3942acc (diff) |
Documentation/sphinx: fix typos of "its"
Use "its" for possessive form instead of the contraction "it's".
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Link: https://lore.kernel.org/r/20211222062354.23224-1-rdunlap@infradead.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/sphinx/kernel_abi.py | 2 | ||||
-rw-r--r-- | Documentation/sphinx/kernel_feat.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/sphinx/kernel_abi.py b/Documentation/sphinx/kernel_abi.py index efe760e410c4..4392b3cb4020 100644 --- a/Documentation/sphinx/kernel_abi.py +++ b/Documentation/sphinx/kernel_abi.py @@ -104,7 +104,7 @@ class KernelCmd(Directive): return nodeList def runCmd(self, cmd, **kwargs): - u"""Run command ``cmd`` and return it's stdout as unicode.""" + u"""Run command ``cmd`` and return its stdout as unicode.""" try: proc = subprocess.Popen( diff --git a/Documentation/sphinx/kernel_feat.py b/Documentation/sphinx/kernel_feat.py index c91ea2b27697..8138d69a6987 100644 --- a/Documentation/sphinx/kernel_feat.py +++ b/Documentation/sphinx/kernel_feat.py @@ -106,7 +106,7 @@ class KernelFeat(Directive): return nodeList def runCmd(self, cmd, **kwargs): - u"""Run command ``cmd`` and return it's stdout as unicode.""" + u"""Run command ``cmd`` and return its stdout as unicode.""" try: proc = subprocess.Popen( |