Skip to content

Commit b96615a

Browse files
author
Ian Langworth ☠
committed
Fix example to use int
1 parent 9a9796b commit b96615a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ var config = getenv.multi({
9797
foo: "FOO", // throws if FOO doesn't exist
9898
bar: ["BAR", "defaultval"], // set a default value
9999
baz: ["BAZ", "defaultval", "string"], // parse into type
100-
quux: ["QUUX", undefined, "integer"] // parse & throw
100+
quux: ["QUUX", undefined, "int"] // parse & throw
101101
});
102102

103103
```

0 commit comments

Comments
 (0)