Merge "Some minor misspellings in comment block."

This commit is contained in:
Jenkins 2016-01-06 10:56:16 +00:00 committed by Gerrit Code Review
commit 70606fa29a
1 changed files with 3 additions and 3 deletions

View File

@ -23,10 +23,10 @@ class NeutronWorker(service.ServiceBase):
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()]