xitongsys / parquet-go

pure golang library for reading/writing parquet file
Apache License 2.0
1.27k stars 293 forks source link

Consistent Receiver Nomenclature #375

Closed alrs closed 3 years ago

alrs commented 3 years ago

This changes receiver variables throughout the project to reflect the name of the receiver, not a generic name like self.

It looks like newer parts of the codebase don't use self anymore, this makes it all consistent.

If you would prefer that I put these up as individual per-package pull requests, I'm happy to do so. I could also squash into a single commit.

https://github.com/golang/go/wiki/CodeReviewComments#receiver-names

xitongsys commented 3 years ago

thanks!