this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove extraneous word from error message (fixes #1086) (#1087)

Fixes #1086

authored by

bnewbold and committed by
GitHub
c28d3a9a afec7231

+1 -1
+1 -1
atproto/data/parse.go
··· 11 11 12 12 func parseFloat(f float64) (int64, error) { 13 13 if f != float64(int64(f)) { 14 - return 0, fmt.Errorf("number was is not a safe integer: %f", f) 14 + return 0, fmt.Errorf("number is not a safe integer: %f", f) 15 15 } 16 16 return int64(f), nil 17 17 }