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:45 +0100 |
commit | 40fdf5c619018e3dc1c755cbb0ea510eff5b442d (patch) | |
tree | 03449d9b58725d07be8fef7c1a19b961d20491a4 /python/vyos | |
parent | 249c8ad37e5ee7eae886aa7ebae64e32a40e5ff3 (diff) | |
download | vyos-1x-40fdf5c619018e3dc1c755cbb0ea510eff5b442d.tar.gz vyos-1x-40fdf5c619018e3dc1c755cbb0ea510eff5b442d.zip |
ethernet: T3163: fix typos in vyos.ethtool comments
(cherry picked from commit bddeae3755c8d83f4c47bc3b3798858a95427530)
Diffstat (limited to 'python/vyos')
-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) |