From d8d13e3b879c30f5ed8643235c63160bb3bcad1f Mon Sep 17 00:00:00 2001 From: Atsushi SAKAI Date: Thu, 6 Aug 2015 10:02:03 +0900 Subject: [PATCH] Fix two typos on documentation and one typo on CLI help intepreted => interpreted (documentation and help) homogenous => homogeneous (documentation) Change-Id: I2e59693399b843449f495a3ed167d3f2ef33a4dd Closes-Bug: #1481987 --- doc/source/devref/glusterfs_native_driver.rst | 2 +- doc/source/devref/pool-aware-manila-scheduler.rst | 2 +- manila/share/drivers/glusterfs_native.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/devref/glusterfs_native_driver.rst b/doc/source/devref/glusterfs_native_driver.rst index 362bab4c4a..0c460ac446 100644 --- a/doc/source/devref/glusterfs_native_driver.rst +++ b/doc/source/devref/glusterfs_native_driver.rst @@ -83,7 +83,7 @@ The following parameters in Manila's configuration file need to be set: - `glusterfs_volume_pattern` = Regular expression template used to filter GlusterFS volumes for share creation. The regex template can contain the #{size} parameter which matches a number (sequence of digits) - and the value shall be intepreted as size of the volume in GB. Examples: + and the value shall be interpreted as size of the volume in GB. Examples: ``manila-share-volume-\d+$``, ``manila-share-volume-#{size}G-\d+$``; with matching volume names, respectively: *manila-share-volume-12*, *manila-share-volume-3G-13*". In latter example, the number that matches diff --git a/doc/source/devref/pool-aware-manila-scheduler.rst b/doc/source/devref/pool-aware-manila-scheduler.rst index c5d5d86539..f0bc39b2c7 100644 --- a/doc/source/devref/pool-aware-manila-scheduler.rst +++ b/doc/source/devref/pool-aware-manila-scheduler.rst @@ -20,7 +20,7 @@ capabilities and single capacity. In reality this assumption is not true for many storage providers, as their storage can be further divided or partitioned into pools to offer completely different sets of capabilities and capacities. That is, there are storage backends which are a combination of -storage pools rather than a single homogenous entity. Usually shares/snapshots +storage pools rather than a single homogeneous entity. Usually shares/snapshots can't be placed across pools on such backends. In the current implementation, an attempt is made to map a single backend diff --git a/manila/share/drivers/glusterfs_native.py b/manila/share/drivers/glusterfs_native.py index 2aeea992ed..aced2a804f 100644 --- a/manila/share/drivers/glusterfs_native.py +++ b/manila/share/drivers/glusterfs_native.py @@ -74,7 +74,7 @@ glusterfs_native_manila_share_opts = [ 'The regex template can optionally (ie. with support ' 'of the GlusterFS backend) contain the #{size} ' 'parameter which matches an integer (sequence of ' - 'digits) in which case the value shall be intepreted as ' + 'digits) in which case the value shall be interpreted as ' 'size of the volume in GB. Examples: ' '"manila-share-volume-\d+$", ' '"manila-share-volume-#{size}G-\d+$"; '