]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - lib/flex_proportions.c
Merge remote-tracking branch 'trivial/for-next'
[karo-tx-linux.git] / lib / flex_proportions.c
index 8f25652f40d4f3aafc770b87b2692b54629a6273..a71cf1bdd4c94a92c4c888be21cad8eebf813c99 100644 (file)
@@ -17,7 +17,7 @@
  *
  *   \Sum_{j} p_{j} = 1,
  *
- * This formula can be straightforwardly computed by maintaing denominator
+ * This formula can be straightforwardly computed by maintaining denominator
  * (let's call it 'd') and for each event type its numerator (let's call it
  * 'n_j'). When an event of type 'j' happens, we simply need to do:
  *   n_j++; d++;