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
There is a bug with certain strings of capital letters appearing in words that results in bad results from a(). For example it should be "a Spicy BLT Sauce", not "an Spicy BLT Sauce".
There is a bug with certain strings of capital letters appearing in words that results in bad results from
a()
. For example it should be "a Spicy BLT Sauce", not "an Spicy BLT Sauce".This appears to have to do with
matching the "LT" part. It seems to me that the regex should be anchored (
^...
) or in some fashion not match random "LT" in the middle of words.I would really appreciate it if you could fix this bug. Thank you!
The text was updated successfully, but these errors were encountered: