Skip to content

Commit 99e182c

Browse files
authored
Fix text in usage example (#80)
1 parent a83fd06 commit 99e182c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ camelCase('foo_bar');
5757
camelCase('Foo-Bar');
5858
//=> 'fooBar'
5959
60-
camelCase('розовый_пушистый_единороги');
61-
//=> 'розовыйПушистыйЕдинороги'
60+
camelCase('розовый_пушистый_единорог');
61+
//=> 'розовыйПушистыйЕдинорог'
6262
6363
camelCase('Foo-Bar', {pascalCase: true});
6464
//=> 'FooBar'

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ camelCase('foo_bar');
2626
camelCase('Foo-Bar');
2727
//=> 'fooBar'
2828

29-
camelCase('розовый_пушистый_единороги');
30-
//=> 'розовыйПушистыйЕдинороги'
29+
camelCase('розовый_пушистый_единорог');
30+
//=> 'розовыйПушистыйЕдинорог'
3131

3232
camelCase('Foo-Bar', {pascalCase: true});
3333
//=> 'FooBar'

0 commit comments

Comments
 (0)