OSDN Git Service

style: format markdown files with remark-lint
author24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Tue, 3 Sep 2019 07:56:10 +0000 (03:56 -0400)
committer24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Tue, 3 Sep 2019 07:56:10 +0000 (03:56 -0400)
docs/lang/basic.md

index b68deaa..cb5b3b1 100644 (file)
@@ -79,11 +79,11 @@ int main() {
 
     ```cpp
     #include <iostream>
-    
+
     using std::cin;
     using std::cout;
     using std::endl;
-    
+
     int main() {
       int x, y;
       cin >> x >> y;
@@ -94,9 +94,9 @@ int main() {
 
     ```cpp
     #include <iostream>
-    
+
     using namespace std;
-    
+
     int main() {
       int x, y;
       cin >> x >> y;