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
Methods should be organized in a class/module in the following way:
Class Documenturion def high_level_method a_lower_level_method @instance end def a_lower_level_method(parameter) #roar end def second_high_level_method another_low_level_method @instance end def another_low_level_method(parameter) #roar again end end
I think when there isn't a clear level of abstraction present in a class, an ad-hoc style such as alphabetical is quite acceptable.
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
What a good idea.
No branches or pull requests
Methods should be organized in a class/module in the following way:
I think when there isn't a clear level of abstraction present in a class, an ad-hoc style such as alphabetical is quite acceptable.
The text was updated successfully, but these errors were encountered: