From ca1389eda2bc4e9db55ee3705ee373068d3c9591 Mon Sep 17 00:00:00 2001 From: 24OI-bot <15963390+24OI-bot@users.noreply.github.com> Date: Mon, 26 Aug 2019 02:11:28 -0400 Subject: [PATCH] style: format markdown files with remark-lint --- docs/basic/stl-sort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basic/stl-sort.md b/docs/basic/stl-sort.md index 890d3fb6..9810705c 100644 --- a/docs/basic/stl-sort.md +++ b/docs/basic/stl-sort.md @@ -77,7 +77,7 @@ std::partial_sort(begin, begin + k, end, cmp); ```cpp int a[1009], n = 10; // ...... -std::sort(a + 1, a + 1 + n); // 从小到大排序。 +std::sort(a + 1, a + 1 + n); // 从小到大排序。 std::sort(a + 1, a + 1 + n, greater()); // 从大到小排序。 ``` -- 2.11.0