Skip to content

Commit

Permalink
style(bps/calc): Reformat comment indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
iwata committed Sep 25, 2023
1 parent 673eb3d commit 9adb7ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bps/calc.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func Sum(first *BPS, rest ...*BPS) *BPS {
//
// To call this function with an array, you must do:
//
// Max(arr[0], arr[1:]...)
// Max(arr[0], arr[1:]...)
//
// This makes it harder to accidentally call Max with 0 arguments.
func Max(first *BPS, rest ...*BPS) *BPS {
Expand All @@ -98,7 +98,7 @@ func Max(first *BPS, rest ...*BPS) *BPS {
//
// To call this function with an array, you must do:
//
// Min(arr[0], arr[1:]...)
// Min(arr[0], arr[1:]...)
//
// This makes it harder to accidentally call Min with 0 arguments.
func Min(fisrt *BPS, rest ...*BPS) *BPS {
Expand Down

0 comments on commit 9adb7ed

Please sign in to comment.