From 1edffae901360649fdc5916885aa0a56e7828ec3 Mon Sep 17 00:00:00 2001 From: Rohan Jha <43717472+draking99@users.noreply.github.com> Date: Tue, 29 Jan 2019 22:46:21 +0530 Subject: [PATCH] Grammatical Correction (#32446) Made a small grammatical correction in line 64 --- 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 7385cd2b37..2b99ef18dd 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; - // If the Operator doesn't match with any case constant (+, -, *, /) + // If the operator doesn't match any case constant (+, -, *, /) default: printf("Error! operator is not correct"); }