From 4a2b88b16e7c3c03ec13a0c4b59bc5657b0a52a4 Mon Sep 17 00:00:00 2001 From: Randell Dawson Date: Thu, 20 Jun 2019 17:34:19 -0700 Subject: [PATCH] fix replace output with shell for language postfix --- guide/english/c/for/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guide/english/c/for/index.md b/guide/english/c/for/index.md index d61d58c00c..7c82066303 100644 --- a/guide/english/c/for/index.md +++ b/guide/english/c/for/index.md @@ -76,7 +76,7 @@ int main() { } ``` Output: -```output +```shell ->1 2 3 4 5 ``` @@ -91,7 +91,7 @@ int main() { } ``` Output: -```output +```shell ->2 4 ``` @@ -106,7 +106,7 @@ int main() { } ``` Output: -```output +```shell ->1 1 2 2 3 3 4 4 ``` @@ -242,7 +242,7 @@ int main(void) { } ``` output: -```output +```shell 1 2 ``` @@ -264,7 +264,7 @@ int main(void) { } ``` output: -```output +```shell 1 2 4