Skip to content

Commit

Permalink
chore: Apply formatter.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Nov 17, 2023
1 parent 8e5b90a commit 8eeffd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/katana/lib/extension/double_iterable_extensions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ extension DoubleIterableExtensions on Iterable<double> {
}

/// Calculate the sum using all values in the [double] list.
///
///
/// [double]のリストのすべての値を用いて合計を算出します。
double sum(){
double sum() {
return reduce((a, b) => a + b);
}

Expand Down

0 comments on commit 8eeffd0

Please sign in to comment.