Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/fizzbuzz.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ def calculate number
'fizz'
elsif number % 5 == 0
'buzz'
elsif number % 7 == 0

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

インデントがおかしいようです

'github'
else
number
end
Expand Down