diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-24 22:30:14 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-02-24 22:30:14 +0100 |
commit | bddeae3755c8d83f4c47bc3b3798858a95427530 (patch) | |
tree | 646b51c0a8735ea02295f301a6af28c43c10e3f6 /python | |
parent | 43d4dd505d16fd7e9af863c424e46ec089942870 (diff) | |
download | vyos-1x-bddeae3755c8d83f4c47bc3b3798858a95427530.tar.gz vyos-1x-bddeae3755c8d83f4c47bc3b3798858a95427530.zip |
ethernet: T3163: fix typos in vyos.ethtool comments
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ethtool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ethtool.py b/python/vyos/ethtool.py index 68c8a6656..136feae8d 100644 --- a/python/vyos/ethtool.py +++ b/python/vyos/ethtool.py @@ -96,6 +96,6 @@ class Ethtool: return self.ring_buffers.get('rx', None) def get_tx_buffer(self): - # Configuration of RX ring-buffers is not supported on every device, + # Configuration of TX ring-buffers is not supported on every device, # thus when it's impossible return None return self.ring_buffers.get('tx', None) |