From fb930243a8d75f94d9125c71782ce6f97f15f36e Mon Sep 17 00:00:00 2001 From: karthik-us Date: Fri, 21 Apr 2023 11:10:31 +0530 Subject: [PATCH] doc: Correct few doc errors Fixes the typos in deploy-cephfs and development-guide docs. Signed-off-by: karthik-us --- docs/deploy-cephfs.md | 4 ++-- docs/development-guide.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/deploy-cephfs.md b/docs/deploy-cephfs.md index 8f2bca2a2..8f23ab8a6 100644 --- a/docs/deploy-cephfs.md +++ b/docs/deploy-cephfs.md @@ -204,7 +204,7 @@ test the deployment further. ### Notes on volume deletion -Dynamically povisioned volumes are deleted by the driver, when requested to +Dynamically provisioned volumes are deleted by the driver, when requested to do so. Statically provisioned volumes, from plugin versions less than or equal to 1.0.0, are a no-op when a delete operation is performed against the same, and are expected to be deleted on the Ceph cluster by the user. @@ -235,4 +235,4 @@ can even be shared. However, not all KMS are supported in order to be compatible with [fscrypt](https://github.com/google/fscrypt). In general KMS that either store secrets to use directly (Vault), or allow access to the -plain password (Kubernets Secrets) work. +plain password (Kubernetes Secrets) work. diff --git a/docs/development-guide.md b/docs/development-guide.md index 28d1130c8..b303e0ccc 100644 --- a/docs/development-guide.md +++ b/docs/development-guide.md @@ -31,7 +31,7 @@ it is **highly** encouraged to: * Run ```console - go get -d github.com/ceph/ceph-csi` + go get -d github.com/ceph/ceph-csi ``` This will just download the source and not build it. The downloaded source @@ -40,7 +40,7 @@ it is **highly** encouraged to: * Add your fork as a git remote: ```console - git remote add fork https://github.com//ceph-csi` + git remote add fork https://github.com//ceph-csi ``` * Set up a pre-commit hook to catch issues locally.