Skip to content

Commit 937f926

Browse files
helloworld12321NicMcPhee
authored andcommitted
Fix funky indenting in an array literal
The array had been indented with a mixture of spaces and tabs. This commit changes it to just use spaces, which is consistent with the surrounding code. :-)
1 parent d093ca1 commit 937f926

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

check_whitespace.c

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,14 @@ int is_clean(char* str) {
6767
int main() {
6868
int NUM_STRINGS = 7;
6969
// Makes an array of 7 string constants for testing.
70-
char* strings[] = { "Morris",
71-
" stuff",
72-
"Minnesota",
73-
"nonsense ",
74-
"USA",
75-
" ",
76-
" silliness "
70+
char* strings[] = {
71+
"Morris",
72+
" stuff",
73+
"Minnesota",
74+
"nonsense ",
75+
"USA",
76+
" ",
77+
" silliness "
7778
};
7879

7980
for (int i = 0; i < NUM_STRINGS; ++i) {

0 commit comments

Comments
 (0)