From f31d345e20a496dab2041a64e1fbed19b4962874 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 15 Jan 2019 16:16:52 -0500 Subject: [PATCH] Fixed misspelling and capitalization in C Guide (#29966) This commit fixes a misspelling in the reference to 'Some shiny things' and capitalizes the 'W in 'We can also write the program in the manner below:' --- guide/english/c/variables-and-basic-datatypes/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/c/variables-and-basic-datatypes/index.md b/guide/english/c/variables-and-basic-datatypes/index.md index d66284722e..fa8b75423d 100644 --- a/guide/english/c/variables-and-basic-datatypes/index.md +++ b/guide/english/c/variables-and-basic-datatypes/index.md @@ -34,7 +34,7 @@ int main(void){ } ``` -Let's break down what we did under the `Some shingy things`: +Let's break down what we did under the `Some shiny things`: ```C printf("%d \n", c); ``` @@ -46,7 +46,7 @@ You can print out several integers in the order given after the comma. Note that when you try to store a decimal value in an `int`, you will only get the whole part of it, because they will be truncated. -we can also write the program in the manner below: +We can also write the program in the manner below: ``` #include int main(void){