Fix the typo "version"

In manila-manage.rst version is misspelled
it is corrected. In manage.py according to
help option I changed revision to version

Change-Id: Icc83b3dcfc31104a015c9e6929335daed5a8bb8b
Closes-Bug: #1487249
This commit is contained in:
venkatamahesh 2015-08-21 06:46:44 +05:30
parent 6228861ebd
commit 9b566a1471
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ Manila Db
``manila-manage db stamp <version>``
Stamp database with given revision.
Stamp database with given version.
``manila-manage db revision <message> <autogenerate>``

View File

@ -237,7 +237,7 @@ class DbCommands(object):
@args('version', nargs='?', default=None,
help='Version to stamp version table with')
def stamp(self, version=None):
"""Stamp the revision table with the given version."""
"""Stamp the version table with the given version."""
return migration.stamp(version)