Skip to content

Commit 74337fb

Browse files
derek73claude
andcommitted
Lowercase the CONTRIBUTING.md example input so capitalize() has visible effect
The name was already properly capitalized, so the second repr (after .capitalize()) was identical to the first -- didn't actually demonstrate what the CLI's capitalize step does. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 6269c6a commit 74337fb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Run a single test file or test:
2020

2121
You can also pass a name string to see how it will be parsed:
2222

23-
$ python -m nameparser "Secretary of State Hillary Rodham-Clinton"
23+
$ python -m nameparser "secretary of state hillary rodham-clinton"
2424
<HumanName : [
25-
title: 'Secretary of State'
26-
first: 'Hillary'
25+
title: 'secretary of state'
26+
first: 'hillary'
2727
middle: ''
28-
last: 'Rodham-Clinton'
28+
last: 'rodham-clinton'
2929
suffix: ''
3030
nickname: ''
3131
maiden: ''

0 commit comments

Comments
 (0)