Re: [webauthn] Spelling and grammar corrections

A few more a/an errors: https://github.com/selfissued/webauthn/pull/5

For future reference, here are two vim regular expressions I used to find them. They detect a lot of false positives ("u" words in particular...), but should hopefully have few or no false negatives except for aliases whose expansion changes the initial letter.

- Find (possibly) incorrect "an"s: `/\v(^|[^a-zA-Z])an\_s[^a-zA-Z]*[qwrtyupsdfghjklzxcvbnmQWRTYUPSDFGHJKLZXCVBNM]`
- Find (possibly) incorrect "a"s: `/\v(^|[^a-zA-Z])a\_s[^a-zA-Z]*[aeyuioAEYUIO]`

-- 
GitHub Notification of comment by emlun
Please view or discuss this issue at https://github.com/w3c/webauthn/pull/815#issuecomment-367627519 using your GitHub account

Received on Thursday, 22 February 2018 09:55:22 UTC