corrected strings.compare example

pull/292/head
Scott Anderson 2019-06-27 11:03:49 -06:00
parent b8d736f21d
commit 8c54fb636d
1 changed files with 2 additions and 2 deletions

View File

@ -15,9 +15,9 @@ _**Output data type:** Integer_
```js
import "strings"
compare(v: "a", t: "a")
strings.compare(v: "a", t: "b")
// returns 0
// returns -1
```
#### Return values