-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
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
Enable whitespace linter & fix findings #12273
Enable whitespace linter & fix findings #12273
Conversation
@@ -188,7 +188,7 @@ func Mod64(a, b uint64) (uint64, error) { | |||
return val, nil | |||
} | |||
|
|||
// Int returns the integer value of the uint64 argument. If there is an overlow, then an error is | |||
// Int returns the integer value of the uint64 argument. If there is an overflow, then an error is |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, fixes this one typo I noticed.
Hi @jtraglia , the build fails at the moment. |
Fixed 😄 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM -- Nice addition thanks!
I fixed the conflicts. Not sure why github was too dumb to figure out that a file was renamed in whole. There was no conflict resolution required locally /shrug |
What type of PR is this?
What does this PR do? Why is it needed?
Removes all of the unnecessary whitespace. Enables the
whitespace
linter to catch this in the future.