diff --git a/README.md b/README.md index d752132..a9068f6 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ import { parseStrict } from 'ms'; parseStrict('1h'); // 3600000 function example(s: string) { - return parseStrict(str); // tsc error + return parseStrict(s); // tsc error } ```