Browse Source

fix read me

Nhu Nguyen 6 years ago
parent
commit
25a781ef26
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      README.MD

+ 4
- 4
README.MD View File

41
 
41
 
42
 # Instruction
42
 # Instruction
43
 Given a number, your method should return a string:
43
 Given a number, your method should return a string:
44
-- Fizz if it's divisible by 3
45
-- Buzz if it's divisible by 5
46
-- FizzBuzz if it's divisible by 15
47
-- the number otherwise
44
+- "Fizz" if it's divisible by 3
45
+- "Buzz" if it's divisible by 5
46
+- "FizzBuzz" if it's divisible by 15
47
+- the number in string format otherwise
48
 
48
 
49
 ## Todo
49
 ## Todo
50
 1. For this repo
50
 1. For this repo