From aec38c04d70bff985f355fccbc76b0b5d013f6e5 Mon Sep 17 00:00:00 2001 From: athreya2013 <40118072+athreya2013@users.noreply.github.com> Date: Tue, 29 Jan 2019 21:40:58 +0530 Subject: [PATCH] Made the comment more clear (#30524) Added clarity to the given comment --- guide/english/c/switch/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/switch/index.md b/guide/english/c/switch/index.md index 5962849862..7385cd2b37 100644 --- a/guide/english/c/switch/index.md +++ b/guide/english/c/switch/index.md @@ -68,7 +68,7 @@ int main() { case '/': printf("%.1lf / %.1lf = %.1lf",a, b, a/b); break; - // Operator is doesn't match any case constant (+, -, *, /) + // If the Operator doesn't match with any case constant (+, -, *, /) default: printf("Error! operator is not correct"); }