[Trivial Fix] Remove the repetition words

Although it is trivial mistakes, it affects reading.

Change-Id: I55778284c989ec1db6c33f34973bb01a00edea19
This commit is contained in:
inspurericzhang 2019-01-07 11:29:47 +08:00
parent 759511722f
commit 106434ef4e
3 changed files with 3 additions and 3 deletions

View File

@ -99,7 +99,7 @@ This will automatically select `LibertyCharm` for a liberty release and
on the `OpenStackCharm` instance via the `__init__()` method, so that the
instance knows what the charm is.
If only a single charm class is needed, the the `__init__()` method of the
If only a single charm class is needed, the `__init__()` method of the
class can be used to determine the release instead:
```python

View File

@ -440,7 +440,7 @@ def make_default_options(base_cls=None, charm_instance=None):
(based on the base_cls) using any custom properties that might have been
made.
If base_cls is None, the the default ConfigurationAdapter will be used.
If base_cls is None, the default ConfigurationAdapter will be used.
:param base_cls: a ConfigurationAdapter or derived class
:param charm_instance: the charm instance to plug into the options.

View File

@ -29,7 +29,7 @@ OPENSTACK_PACKAGE_TYPE_KEY = 'charmers.openstack-package-type'
# _releases{} is a dictionary of release -> class that is instantiated
# according to the the release that is being requested. i.e. a charm can
# according to the release that is being requested. i.e. a charm can
# handle more than one release. The BaseOpenStackCharm() derived class sets the
# `release` variable to indicate which release that the charm supports.
# Any subsequent releases that need a different/specialised charm uses the