Skip to content

Commit

Permalink
Do not use ignored arguments in solution boilerplate (#1518)
Browse files Browse the repository at this point in the history
  • Loading branch information
angelikatyborska authored Aug 28, 2024
1 parent 3c7204b commit 2a86c3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exercises/practice/bottle-song/lib/bottle_song.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ defmodule BottleSong do
"""

@spec recite(pos_integer, pos_integer) :: String.t()
def recite(_start_bottle, _take_down) do
def recite(start_bottle, take_down) do
end
end
2 changes: 1 addition & 1 deletion exercises/practice/series/lib/string_series.ex
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ defmodule StringSeries do
return an empty list.
"""
@spec slices(s :: String.t(), size :: integer) :: list(String.t())
def slices(_s, _size) do
def slices(s, size) do
end
end

0 comments on commit 2a86c3d

Please sign in to comment.