Fix typo an dictionnary -> dictionary

This commit is contained in:
Benjamin Drung 2015-11-03 17:52:12 +01:00
parent 5843c7aa24
commit 470e82f17f
4 changed files with 9 additions and 9 deletions

View file

@ -290,19 +290,19 @@ Extended Changelog Courtesy of Todd Stansell (https://github.com/tjstansell/salt
* c838a22 unit tests for grains.append module function
- **PR** `#23474`_: (*dr4Ke*) Fix grains.append in nested dictionnary grains `#23411`_
- **PR** `#23474`_: (*dr4Ke*) Fix grains.append in nested dictionary grains `#23411`_
@ *2015-05-11T18:00:21Z*
- **ISSUE** `#23411`_: (*dr4Ke*) grains.append should work at any level of a grain
| refs: `#23440`_
- **PR** `#23440`_: (*dr4Ke*) fix grains.append in nested dictionnary grains `#23411`_
- **PR** `#23440`_: (*dr4Ke*) fix grains.append in nested dictionary grains `#23411`_
| refs: `#23474`_
* e96c5c5 Merge pull request `#23474`_ from dr4Ke/fix_grains.append_nested
* a01a5bb grains.get, parameter delimititer, versionadded: 2014.7.6
* b39f504 remove debugging output
* b6e15e2 fix grains.append in nested dictionnary grains `#23411`_
* b6e15e2 fix grains.append in nested dictionary grains `#23411`_
- **PR** `#23537`_: (*t0rrant*) Update changelog
@ *2015-05-11T17:02:16Z*

View file

@ -853,10 +853,10 @@ Extended Changelog Courtesy of Todd Stansell (https://github.com/tjstansell/salt
- **PR** `#23530`_: (*dr4Ke*) salt-ssh state: fix including all salt:// references
- **PR** `#23496`_: (*martinhoefling*) Fix for issue `#23110`_
| refs: `#23594`_
- **PR** `#23474`_: (*dr4Ke*) Fix grains.append in nested dictionnary grains `#23411`_
- **PR** `#23474`_: (*dr4Ke*) Fix grains.append in nested dictionary grains `#23411`_
- **PR** `#23442`_: (*clan*) add directory itself to keep list
| refs: `#23593`_
- **PR** `#23440`_: (*dr4Ke*) fix grains.append in nested dictionnary grains `#23411`_
- **PR** `#23440`_: (*dr4Ke*) fix grains.append in nested dictionary grains `#23411`_
| refs: `#23474`_
- **PR** `#23433`_: (*twangboy*) Obtain all software from the registry
- **PR** `#23389`_: (*cachedout*) Correct fail_hard typo
@ -952,7 +952,7 @@ Extended Changelog Courtesy of Todd Stansell (https://github.com/tjstansell/salt
* b39f504 remove debugging output
* b6e15e2 fix grains.append in nested dictionnary grains `#23411`_
* b6e15e2 fix grains.append in nested dictionary grains `#23411`_
* ab7e1ae Merge pull request `#23537`_ from t0rrant/patch-1

View file

@ -299,7 +299,7 @@ def append(key, val, convert=False, delimiter=DEFAULT_TARGET_DELIM):
:param delimiter: The key can be a nested dict key. Use this parameter to
specify the delimiter you use, instead of the default ``:``.
You can now append values to a list in nested dictionnary grains. If the
You can now append values to a list in nested dictionary grains. If the
list doesn't exist at this level, it will be created.
.. versionadded:: 2014.7.6
@ -341,7 +341,7 @@ def remove(key, val, delimiter=DEFAULT_TARGET_DELIM):
:param delimiter: The key can be a nested dict key. Use this parameter to
specify the delimiter you use, instead of the default ``:``.
You can now append values to a list in nested dictionnary grains. If the
You can now append values to a list in nested dictionary grains. If the
list doesn't exist at this level, it will be created.
.. versionadded:: Boron

View file

@ -341,7 +341,7 @@ class GrainsModuleTestCase(TestCase):
'c': 8})
def test_set_nested_fails_replace_simple_value(self):
# Fails to replace a simple value with a new dictionnary consisting
# Fails to replace a simple value with a new dictionary consisting
# of the specified key and value
grainsmod.__grains__ = {'a': 'aval', 'b': 'l1', 'c': 8}
res = grainsmod.set('b,l3', 'val3', delimiter=',')