docs: fix simple typo, noumbers -> numbers

There is a small typo in snippets/weighted_average.md.

Should read `numbers` rather than `noumbers`.
This commit is contained in:
Tim Gates
2020-12-25 00:00:53 +11:00
parent 51aca28237
commit 3494adc4b3

View File

@ -3,7 +3,7 @@ title: weighted_average
tags: math,list,intermediate
---
Returns the weighted average of two or more noumbers.
Returns the weighted average of two or more numbers.
- Use `sum()` to sum the products of the numbers by their weight and to sum the weights.
- Use `zip()` and a list comprehension to iterate over the pairs of values and weights.