diff --git a/vmware_nsx/plugins/nsx_v/drivers/shared_router_driver.py b/vmware_nsx/plugins/nsx_v/drivers/shared_router_driver.py index eca18c8c4b..409138be37 100644 --- a/vmware_nsx/plugins/nsx_v/drivers/shared_router_driver.py +++ b/vmware_nsx/plugins/nsx_v/drivers/shared_router_driver.py @@ -648,7 +648,7 @@ class RouterSharedDriver(router_driver.RouterBaseDriver): subnet = self.plugin.get_subnet(context, info['subnet_id']) network_id = subnet['network_id'] # Collect all conflict networks whose cidr are overlapped - # with networks attached to the router and conflct routers + # with networks attached to the router and conflict routers # which has same network with the router's. conflict_network_ids, conflict_router_ids, _ = ( self._get_conflict_network_and_router_ids_by_intf( @@ -709,7 +709,7 @@ class RouterSharedDriver(router_driver.RouterBaseDriver): else: info = self._base_add_router_interface(context, router_id, interface_info) - # bind and configure routing servie on an availab edge + # bind and configure routing service on an available edge self._bind_router_on_available_edge( context, router_id, router_db.admin_state_up) edge_id = edge_utils.get_router_edge_id(context, router_id)