diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2022-08-30 01:54:14 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-08-31 21:36:08 +0200 |
commit | 404a5ad72011f5bd2bb90f0a035be7635e2bd839 (patch) | |
tree | 2d857663ccc8b9af4c939b4cef953a4f667ed445 /Documentation/networking/driver.rst | |
parent | kcm: fix strp_init() order and cleanup (diff) | |
download | linux-404a5ad72011f5bd2bb90f0a035be7635e2bd839.tar.xz linux-404a5ad72011f5bd2bb90f0a035be7635e2bd839.zip |
Documentation: networking: correct possessive "its"
Change occurrences of "it's" that are possessive to "its"
so that they don't read as "it is".
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Paolo Abeni <pabeni@redhat.com>
Cc: Jiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/20220829235414.17110-1-rdunlap@infradead.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'Documentation/networking/driver.rst')
-rw-r--r-- | Documentation/networking/driver.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/networking/driver.rst b/Documentation/networking/driver.rst index c8f59dbda46f..64f7236ff10b 100644 --- a/Documentation/networking/driver.rst +++ b/Documentation/networking/driver.rst @@ -8,7 +8,7 @@ Transmit path guidelines: 1) The ndo_start_xmit method must not return NETDEV_TX_BUSY under any normal circumstances. It is considered a hard error unless - there is no way your device can tell ahead of time when it's + there is no way your device can tell ahead of time when its transmit function will become busy. Instead it must maintain the queue properly. For example, |