Skip to content

Commit 6dbfeb7

Browse files
committed
Add final newlines
1 parent c61bb28 commit 6dbfeb7

7 files changed

Lines changed: 6 additions & 7 deletions

File tree

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,4 +881,4 @@
881881
"typing/weak",
882882
"used_for/scripts"
883883
]
884-
}
884+
}

exercises/practice/camicia/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"blurb": "Simulate the card game and determine whether the match ends or enters an infinite loop.",
1717
"source": "Beggar-My-Neighbour",
1818
"source_url": "https://www.richardpmann.com/beggar-my-neighbour-records.html"
19-
}
19+
}

exercises/practice/circular-buffer/circular_buffer.vader

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,3 @@ Execute (initial clear does not affect wrapping around):
103103
AssertEqual g:buffer.Read(), 4
104104
AssertThrows call g:buffer.Read()
105105
AssertEqual "Empty buffer", g:vader_exception
106-

exercises/practice/leap/.approaches/if-else-statements/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ The clauses for each are checked sequentially until one produces a truthy value.
1919
Each clause checks if a year is evenly divisible by another number by checking the remainder of their division.
2020
If a year is evenly divisible by 400, the first clause produces a truthy value so the command within the if branch is executed, returning 1.
2121
If it's not evenly divisible, Vim proceeds to the next clause until one produces a truthy value or the else statement is hit.
22-
In that case, 0 is returned because the year failed all three checks.
22+
In that case, 0 is returned because the year failed all three checks.

exercises/practice/leap/.approaches/if-else-statements/snippet.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ function! LeapYear(year) abort
55
return 0
66
elseif a:year % 4 == 0
77
return 1
8-
# cut for snippet brevity
8+
# cut for snippet brevity

exercises/practice/perfect-numbers/.meta/example.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ function! Classify(number) abort
2626
else
2727
return 'abundant'
2828
endif
29-
endfunction
29+
endfunction

exercises/practice/word-count/.meta/example.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ function! WordCount(phrase)
99
endfor
1010

1111
return words
12-
endfunction
12+
endfunction

0 commit comments

Comments
 (0)