Rich2 / openstrat

Cross Platform Scala 2d graphics (but 3d compatible), basic geometry, maps, Earth maps, hex-tiling and strategy library(s).
https://richstrat.com
Apache License 2.0
22 stars 8 forks source link

Change Array member names from arr to array #74

Closed Rich2 closed 5 years ago

Rich2 commented 5 years ago

In openstrat Arr is an alias for ArraySeq, an immutable compile time wrapper around an Array. Therefore a member named arr should have type Arr. array should be the default member name for Arrays. Many are called arr, because they were written pre 2.13, when there was no ArraySeq.

As part of this sort CanvasJs: line 106

And document this convention before closing.