diff options
author | Andrea Gelmini <[email protected]> | 2019-08-30 23:32:18 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-08-30 14:32:18 -0700 |
commit | 9f5c1bc60935068d947dd596a7dbefdf4d04efd7 (patch) | |
tree | 2f7e8c3531c1f0809863cdd862e6b79f398cf6fd /module/zcommon | |
parent | 9d40bdf414e9baa8fcaf60188e2067e7ec3c1f0f (diff) |
Fix typos in module/
Reviewed-by: Ryan Moeller <[email protected]>
Reviewed-by: Richard Laager <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Andrea Gelmini <[email protected]>
Closes #9241
Diffstat (limited to 'module/zcommon')
-rw-r--r-- | module/zcommon/zfeature_common.c | 2 | ||||
-rw-r--r-- | module/zcommon/zfs_namecheck.c | 2 | ||||
-rw-r--r-- | module/zcommon/zpool_prop.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/module/zcommon/zfeature_common.c b/module/zcommon/zfeature_common.c index 8e1aef5da..e5a1aff9c 100644 --- a/module/zcommon/zfeature_common.c +++ b/module/zcommon/zfeature_common.c @@ -551,7 +551,7 @@ zpool_feature_init(void) zfeature_register(SPA_FEATURE_RESILVER_DEFER, "com.datto:resilver_defer", "resilver_defer", - "Support for defering new resilvers when one is already running.", + "Support for deferring new resilvers when one is already running.", ZFEATURE_FLAG_READONLY_COMPAT, ZFEATURE_TYPE_BOOLEAN, NULL); } diff --git a/module/zcommon/zfs_namecheck.c b/module/zcommon/zfs_namecheck.c index 285f8b644..1649fd545 100644 --- a/module/zcommon/zfs_namecheck.c +++ b/module/zcommon/zfs_namecheck.c @@ -74,7 +74,7 @@ get_dataset_depth(const char *path) /* * Keep track of nesting until you hit the end of the - * path or found the snapshot/bookmark seperator. + * path or found the snapshot/bookmark separator. */ for (int i = 0; loc[i] != '\0' && loc[i] != '@' && diff --git a/module/zcommon/zpool_prop.c b/module/zcommon/zpool_prop.c index 539de5645..155d557f4 100644 --- a/module/zcommon/zpool_prop.c +++ b/module/zcommon/zpool_prop.c @@ -156,7 +156,7 @@ zpool_name_to_prop(const char *propname) /* * Given a pool property ID, returns the corresponding name. - * Assuming the pool propety ID is valid. + * Assuming the pool property ID is valid. */ const char * zpool_prop_to_name(zpool_prop_t prop) |