From 220ca7337b386048bf92d984db7c83612175f400 Mon Sep 17 00:00:00 2001 From: Prithviraj Patil <116709298+prithvipatil97@users.noreply.github.com> Date: Tue, 27 May 2025 00:02:44 +0530 Subject: [PATCH] Remove unnecessary ~ sign from the documentation. - Remove unnecessary "~" sign from the documentation. - Here is the documentation link: https://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/storage/using-container-storage-interface-csi#persistent-storage-csi-vsphere-install-issues_persistent-storage-csi-vsphere Here is the current documentation: 3. Delete the third-party vSphere CSI driver CSIDriver object: ~~~ ~ $ oc delete CSIDriver csi.vsphere.vmware.com ~~~ - Above command is correct. - But there is one unnecessary sign "~". - We need to remove it, as it is of no use. Here is the updated look: 3. Delete the third-party vSphere CSI driver CSIDriver object: ~~~ $ oc delete CSIDriver csi.vsphere.vmware.com ~~~ --- modules/persistent-storage-csi-vsphere-install-issues.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/persistent-storage-csi-vsphere-install-issues.adoc b/modules/persistent-storage-csi-vsphere-install-issues.adoc index 02735d618f..2473828ce4 100644 --- a/modules/persistent-storage-csi-vsphere-install-issues.adoc +++ b/modules/persistent-storage-csi-vsphere-install-issues.adoc @@ -23,7 +23,7 @@ To uninstall the third-party vSphere CSI Driver: + [source,terminal] ---- -~ $ oc delete CSIDriver csi.vsphere.vmware.com +$ oc delete CSIDriver csi.vsphere.vmware.com ---- + [source,terminal]