summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lib/std/sums.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/sums.nim b/lib/std/sums.nim
index a48360180..0f8c5ebfb 100644
--- a/lib/std/sums.nim
+++ b/lib/std/sums.nim
@@ -10,7 +10,7 @@
 
 
 func sumKbn*[T](x: openArray[T]): T =
-  ## Kahan (compensated) summation: O(1) error growth, at the expense
+  ## Kahan-Babuška-Neumaier summation: O(1) error growth, at the expense
   ## of a considerable increase in computational expense.
   if len(x) == 0: return
   var sum = x[0]