]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Some minor misspellings in comment block.
authorJas <singhj@us.ibm.com>
Tue, 24 Nov 2015 06:01:21 +0000 (00:01 -0600)
committerJas <singhj@us.ibm.com>
Tue, 24 Nov 2015 06:01:21 +0000 (00:01 -0600)
Change-Id: I4d7b71bc05b237e986e95ea7b8dc55ca4f307aeb

neutron/worker.py

index c49d742f6a780005fc2700009a5afddc226109c4..80a16533ebadcb00cb8a69f06bcf5fefa94c21b7 100644 (file)
@@ -20,13 +20,13 @@ from neutron.callbacks import resources
 class NeutronWorker(service.ServiceBase):
     """Partial implementation of the ServiceBase ABC
 
-    Subclasses will still need to add the other abstractmethods defined in
+    Subclasses will still need to add the other abstract methods defined in
     service.ServiceBase. See oslo_service for more details.
 
-    If a plugin needs to handle synchornization with the Neutron database and
+    If a plugin needs to handle synchronization with the Neutron database and
     do this only once instead of in every API worker, for instance, it would
     define a NeutronWorker class and the plugin would have get_workers return
-    an array of NeutronWorker instnaces. For example:
+    an array of NeutronWorker instances. For example:
         class MyPlugin(...):
             def get_workers(self):
                 return [MyPluginWorker()]