From 163d439bc7cd7c7b4a5996d2e04e91578a575ec9 Mon Sep 17 00:00:00 2001 From: Rob-Rychs Date: Tue, 17 Apr 2018 02:05:26 -0700 Subject: [PATCH] fix typo --- snippets/average.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/average.md b/snippets/average.md index 85acb9475..a067ae6cb 100644 --- a/snippets/average.md +++ b/snippets/average.md @@ -4,7 +4,7 @@ Returns the average of two or more numbers. -Takes the sum of all the `args` and divides it by `len(args)`. The second argument `0.0` in sum is to handle floating point division in `python2`. +Takes the sum of all the `args` and divides it by `len(args)`. The second argument `0.0` in sum is to handle floating point division in `python3`. ```python def average(*args):