diff options
| author | Carlos Martín Nieto <[email protected]> | 2013-09-12 10:40:57 +0200 |
|---|---|---|
| committer | Carlos Martín Nieto <[email protected]> | 2013-09-12 10:40:57 +0200 |
| commit | 00e3df94c7e06ab66fe4618d3252458163e4a404 (patch) | |
| tree | 6577e2ca0d50402c19caccdfdf82eb2b6d548ec3 /walk.go | |
| parent | ef5fc378703bb4a0da2f9558237f1652b68431ec (diff) | |
Camel-case constants
Make the names look more like what you'd expect from Go.
Diffstat (limited to 'walk.go')
| -rw-r--r-- | walk.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,10 +14,10 @@ import ( // RevWalk const ( - SORT_NONE = C.GIT_SORT_NONE - SORT_TOPOLOGICAL = C.GIT_SORT_TOPOLOGICAL - SORT_TIME = C.GIT_SORT_TIME - SORT_REVERSE = C.GIT_SORT_REVERSE + SortNone = C.GIT_SORT_NONE + SortTopological = C.GIT_SORT_TOPOLOGICAL + SortTime = C.GIT_SORT_TIME + SortReverse = C.GIT_SORT_REVERSE ) type RevWalk struct { |
