You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is my first time making any updates to the toolset, so please tell me if I got the idea correctly.
From what I understand, the words file has words that need to lose the hyphen, correct? Or am I reading the code incorrectly?
I also noticed that some words have different lines for their capitalized and non-capitalized versions; is there a particular reason for that? I'm trying to understand.
From what I understand, the words file has words that need to lose the hyphen, correct? Or am I reading the code incorrectly?
Correct
I also noticed that some words have different lines for their capitalized and non-capitalized versions; is there a particular reason for that? I'm trying to understand.
It's not possible for regex to replace a capital with a lowercase so for these cases we need two regexes.
This looks good but \b is not necessary on either end. This word will never occur within another word, and we also want to catch cases like Bagdadi.
It's not possible for regex to replace a capital with a lowercase so for these cases we need two regexes.
Of course, Only now I realize that the words that use a capture group don't change the first letter.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is my first time making any updates to the toolset, so please tell me if I got the idea correctly.
From what I understand, the
wordsfile has words that need to lose the hyphen, correct? Or am I reading the code incorrectly?I also noticed that some words have different lines for their capitalized and non-capitalized versions; is there a particular reason for that? I'm trying to understand.