grammatical number - Pluralizing keywords in programming languages
Marking plural of code words In the language that I'm currently working in one of the keywords is try . I'm writing an error message: No implementation for global level try statements. It's too long in my source and so I would very much like to reduce it to No implementation for global level try's. Anybody using my code should understand it very easily as my code is entirely about dynamically determining what exception handling is in place and the try keyword is one of the cornerstones of exception handling in the given language. Could we pretend for the duration that I'm not being overly picky? Is this pluralization correct or at least acceptable? Both "tries" and "trys" look very wrong to me. Are there general rules pertaining to pluralizing keywords and other identifiers from programming languages. A quick google search and more extensive search of this site didn't quite do it. I did find this question . The selected answer assumes the ...