Skip to content

Commit 99aed2a

Browse files
committed
Remove FIXME
1 parent 88bf2ef commit 99aed2a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sh/obj.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ func (o *StrObj) Str() string { return string(o.runes) }
8080
func (o *StrObj) String() string { return o.Str() }
8181

8282
func (o *StrObj) Get(index int) (Obj, error) {
83-
// FIXME: Use runes instead
8483
if index >= o.Len() {
8584
return nil, fmt.Errorf(
8685
"IndexError: Index[%d] out of range, string size[%d]",

0 commit comments

Comments
 (0)