OSDN Git Service

style: format markdown files with remark-lint
author24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Wed, 4 Sep 2019 09:07:44 +0000 (05:07 -0400)
committer24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Wed, 4 Sep 2019 09:07:44 +0000 (05:07 -0400)
docs/lang/basic.md

index 9675ed7..7069928 100644 (file)
@@ -236,7 +236,8 @@ int main() {
   // 输出为 3 11,因为 #define 是文本替换,后面的语句被替换为了 2 * 3 + 5
   int i = 1;
   std::cout << square(++i) << ' ' << i;
-  // 输出为 9 3 或 6 3,因为 ++i 被执行了两遍,而同一个语句中出现多个 ++ 是未定义行为
+  // 输出为 9 3 或 6 3,因为 ++i 被执行了两遍,而同一个语句中出现多个 ++
+  // 是未定义行为
 }
 ```