[dts] [PATCH] nics: fix typos

Rami Rosen ramirose at gmail.com
Tue Jan 15 07:52:58 CET 2019


This patch fixes typos in three modules under nics:
addtional->additional

Signed-off-by: Rami Rosen <ramirose at gmail.com>
---
 nics/atwood.py | 2 +-
 nics/br.py     | 4 ++--
 nics/rrc.py    | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/nics/atwood.py b/nics/atwood.py
index 76a94bd..e1491c7 100644
--- a/nics/atwood.py
+++ b/nics/atwood.py
@@ -108,7 +108,7 @@ class Atwood(NetDevice):
         if 'tp_path' in port_cfg.keys():
             self.tp_path = port_cfg['tp_path']
 
-        # create addtional session
+        # create additional session
         self.ctrl_crb = CtrlCrb(crb)
 
     def setup(self):
diff --git a/nics/br.py b/nics/br.py
index 79c8a7b..d95a5f9 100644
--- a/nics/br.py
+++ b/nics/br.py
@@ -125,7 +125,7 @@ class BoulderRapid(NetDevice):
             port_info = self.host.get_port_info(first_addr)
             if port_info is None:
                 raise PortConfigParseException("BoulderRapid first port not found")
-            # get addtional session
+            # get additional session
             netdev = port_info['port']
             self.ctrl_crb = netdev.get_control()
             self.sec_port = True
@@ -144,7 +144,7 @@ class BoulderRapid(NetDevice):
         if 'tp_path' in port_cfg.keys():
             self.tp_path = port_cfg['tp_path']
 
-        # create addtional session
+        # create additional session
         self.ctrl_crb = CtrlCrb(crb)
 
     def setup(self):
diff --git a/nics/rrc.py b/nics/rrc.py
index a6ac175..099a6b1 100644
--- a/nics/rrc.py
+++ b/nics/rrc.py
@@ -126,7 +126,7 @@ class RedRockCanyou(NetDevice):
             port_info = self.host.get_port_info(first_addr)
             if port_info is None:
                 raise PortConfigParseException("RRC first port not found")
-            # get addtional session
+            # get additional session
             netdev = port_info['port']
             self.ctrl_crb = netdev.get_control()
             self.sec_port = True
@@ -145,7 +145,7 @@ class RedRockCanyou(NetDevice):
         if 'tp_path' in port_cfg.keys():
             self.tp_path = port_cfg['tp_path']
 
-        # create addtional session
+        # create additional session
         self.ctrl_crb = CtrlCrb(crb)
 
     def setup(self):
-- 
1.8.3.1



More information about the dts mailing list