From d14ec72fb8d15330a2c83e7ae60ccef61fa05d91 Mon Sep 17 00:00:00 2001 From: eliberator Date: Fri, 26 Oct 2018 11:24:34 +0200 Subject: [PATCH] typo - update value of a to 100 (#27853) --- guide/chinese/c/if/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/chinese/c/if/index.md b/guide/chinese/c/if/index.md index 784c62521b..3dba5946e9 100644 --- a/guide/chinese/c/if/index.md +++ b/guide/chinese/c/if/index.md @@ -36,7 +36,7 @@ if (condition) { int main () { // Local variable definition - int a = 10; + int a = 100; // Check the boolean condition if(a < 5) { @@ -59,4 +59,4 @@ if (condition) { -> a is not less than 5! -> Value of a is : 100 -``` \ No newline at end of file +```