From 7a104b4025dc33b3d2b94d96843254b6f9098be4 Mon Sep 17 00:00:00 2001 From: xkh-829 <2511098339@qq.com> Date: Wed, 21 May 2025 21:06:24 +0800 Subject: [PATCH] Update c++.md (#5311) Added a semicolon to the namespace code --- zh-cn/c++.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-cn/c++.md b/zh-cn/c++.md index c31f7d5b..5d6c33aa 100644 --- a/zh-cn/c++.md +++ b/zh-cn/c++.md @@ -141,7 +141,7 @@ namespace First { namespace Second { void foo() { - printf("This is Second::foo\n") + printf("This is Second::foo\n"); } }