From af308c5617f1264b66d5e8e08346fdab6eab4f1e Mon Sep 17 00:00:00 2001 From: dummy Date: Sat, 22 Jul 2023 03:04:23 +0800 Subject: [PATCH] docs: corrected ARGS.C command-line list output This commit includes a correction to the ARGS.C command-line list output in the documentation, ensuring it accurately reflects the actual output. --- docs/c-language/parsing-c-command-line-arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/c-language/parsing-c-command-line-arguments.md b/docs/c-language/parsing-c-command-line-arguments.md index fbf4ba7380f..37af0800cb0 100644 --- a/docs/c-language/parsing-c-command-line-arguments.md +++ b/docs/c-language/parsing-c-command-line-arguments.md @@ -34,7 +34,7 @@ This list illustrates the rules above by showing the interpreted result passed t | `a\\\b d"e f"g h` | `a\\\b` | `de fg` | `h` | | `a\\\"b c d` | `a\"b` | `c` | `d` | | `a\\\\"b c" d e` | `a\\b c` | `d` | `e` | -| `a"b"" c d` | `ab" c d` | | | +| `a"b"" c d` | `ab"` | `c` | `d` | ## Example