- fix spelling

This commit is contained in:
Emir Pasic
2016-06-24 20:27:34 +02:00
parent ab6656e286
commit 35457aba81
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ func (stack *Stack) String() string {
return str
}
// Check that the index is withing bounds of the list
// Check that the index is within bounds of the list
func (stack *Stack) withinRange(index int) bool {
return index >= 0 && index < stack.list.Size()
}