Skip to content

Commit

Permalink
Normalize the line endings (#13)
Browse files Browse the repository at this point in the history
This helps with GitHub diffs
  • Loading branch information
ErikSchierboom authored May 24, 2024
1 parent 3d400ac commit 2c1bc3f
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 10 deletions.
1 change: 0 additions & 1 deletion exercises/practice/darts/src/darts.art
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
score: function [x y][
panic "please implement the score function"
]

1 change: 0 additions & 1 deletion exercises/practice/darts/tester.art
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import {unitt}!

runTests.failFast findTests "tests"

1 change: 0 additions & 1 deletion exercises/practice/dnd-character/src/dnd-character.art
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ ability: function [][
makeCharacter: function [][
panic "Implement the makeCharacter function"
]

Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,3 @@ suite "D&D Character" [
assert -> (+ 10 modifier result\constitution) = result\hitpoints
]
]

2 changes: 1 addition & 1 deletion exercises/practice/hello-world/tester.art
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {unitt}!

runTests.failFast findTests "tests"
runTests.failFast findTests "tests"
1 change: 0 additions & 1 deletion exercises/practice/leap/src/leap.art
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
isLeap?: function [year][
panic "please implement the isLeap? function"
]

2 changes: 1 addition & 1 deletion exercises/practice/leap/tester.art
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {unitt}!

runTests.failFast findTests "tests"
runTests.failFast findTests "tests"
1 change: 0 additions & 1 deletion exercises/practice/leap/tests/test-leap.art
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ suite "Leap" [
assert -> false = result
]
]

2 changes: 1 addition & 1 deletion exercises/practice/resistor-color-duo/tester.art
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {unitt}!

runTests.failFast findTests "tests"
runTests.failFast findTests "tests"
2 changes: 1 addition & 1 deletion exercises/practice/two-fer/tester.art
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {unitt}!

runTests.failFast findTests "tests"
runTests.failFast findTests "tests"

0 comments on commit 2c1bc3f

Please sign in to comment.