From c8b19d0712220e6ffaa01651e1e8406963e4a7cf Mon Sep 17 00:00:00 2001 From: Prithviraj Patil <116709298+prithvipatil97@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:54:12 +0530 Subject: [PATCH] Update deleting-the-clusterlogging-instance.adoc Underscore sign is missing from the documentation Here is the documentation link: https://docs.redhat.com/en/documentation/red_hat_openshift_logging/6.3/html/upgrading_logging/upgrading-to-logging-6#deleting-the-clusterlogging-instance_upgrading-to-logging-6 Current Look: Delete the ClusterLogging instance. $ oc delete clusterlogging -n Here, the underscore sign is missing from`` As per the standard rule, such values should be separated with `underscore` sign. Hence, we need to sign between these values. Like Updated Look: Delete the ClusterLogging instance. $ oc delete clusterlogging -n This is the correct format. [New] Update modules/deleting-the-clusterlogging-instance.adoc - Underscore sign is missing from the documentation - Here is the documentation link: https://docs.redhat.com/en/documentation/red_hat_openshift_logging/6.3/html/upgrading_logging/upgrading-to-logging-6#deleting-the-clusterlogging-instance_upgrading-to-logging-6 Current Look: - Delete the ClusterLogging instance. ~~~ $ oc delete clusterlogging -n ~~~ - Here, the underscore sign is missing from`` - As per the standard rule, such values should be separated with `underscore` sign. - Hence, we need to sign between these values. Like Updated Look: - Delete the ClusterLogging instance. ~~~ $ oc delete clusterlogging -n ~~~ This is the correct format. Co-authored-by: Jeana Routh <61474374+jeana-redhat@users.noreply.github.com> --- modules/deleting-the-clusterlogging-instance.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deleting-the-clusterlogging-instance.adoc b/modules/deleting-the-clusterlogging-instance.adoc index 29dc47a1283b..b5050478f6dd 100644 --- a/modules/deleting-the-clusterlogging-instance.adoc +++ b/modules/deleting-the-clusterlogging-instance.adoc @@ -16,7 +16,7 @@ Delete the ClusterLogging instance because it is no longer needed in Logging 6.x + [source,terminal] ---- -$ oc delete clusterlogging -n +$ oc delete clusterlogging -n ---- .Verification