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
This makes it more difficult for other devs to introduce bugs.
The text was updated successfully, but these errors were encountered:
For example, the following code:
if (x < 5) ++x;
should be updated to include curly braces like so:
if (x < 5) { ++x; }
Sorry, something went wrong.
[irods#34] Wrapped single-line bodies of if statements
79b6b47
in curly braces - Only done in operation files
[#34] Wrapped single-line bodies of if statements
08796d5
No branches or pull requests
This makes it more difficult for other devs to introduce bugs.
The text was updated successfully, but these errors were encountered: