Grammatical improvement in Max.

This commit is contained in:
Chris 2021-06-14 14:34:05 +01:00
parent cb5843c590
commit 12a837f49c
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Write a function, `Max`, that returns the maximum value in a slice of integers. If the slice is empty, returns 0.
Write a function `Max` that will return the maximum value in a slice of integers. If the slice is empty it will return 0.
### Expected function