We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
I've spotted typo in section "Functions" paragraph "Functions should only be one level of abstraction" in point "Good". It's saying:
class BetterJSAlternative { private string _tokenizer; private string _lexer; // ...
But both _tokenizer and _lexer are supposed to be classes Tokenizer and Lexer respectively. So it should be something like:
_tokenizer
_lexer
Tokenizer
Lexer
class BetterJSAlternative { private Tokenizer _tokenizer; private Lexer _lexer; // ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
I've spotted typo in section "Functions" paragraph "Functions should only be one level of abstraction" in point "Good". It's saying:
But both
_tokenizer
and_lexer
are supposed to be classesTokenizer
andLexer
respectively. So it should be something like:The text was updated successfully, but these errors were encountered: