소스 검색

Restrict style area to sample only

Formatting was wrongly applied across lines before
DricomDragon 5 년 전
부모
커밋
7ff68a5b9f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      colors/main.cpp

+ 2 - 1
colors/main.cpp

@@ -34,8 +34,9 @@ int main() {
 			for (int color(0); color <= 9; color ++) {
 				cout << cat << ';' << kind << color << endl;
 				cout << "\033[" << cat << ';' << kind << color << 'm';
-				cout << "Sample #|!0123456789AaBbCc" << endl;
+				cout << "Sample #|!0123456789AaBbCc";
 				resetColor();
+				cout << endl;
 			}
 		}
 	}