diff options
Diffstat (limited to 'mobile/primitives.go')
-rw-r--r-- | mobile/primitives.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/primitives.go b/mobile/primitives.go index 28f402d4f..54b25df59 100644 --- a/mobile/primitives.go +++ b/mobile/primitives.go @@ -32,7 +32,7 @@ func (s *Strings) Size() int { } // Get returns the string at the given index from the slice. -func (s *Strings) Get(index int) (string, error) { +func (s *Strings) Get(index int) (str string, _ error) { if index < 0 || index >= len(s.strs) { return "", errors.New("index out of bounds") } |