From ede7d8d5f66cce17191f0c468435b0afb785c20e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com>
Date: Sat, 29 Dec 2018 01:44:52 +0100
Subject: [PATCH] Combinations

---
 README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 85ebb46..e55dd62 100644
--- a/README.md
+++ b/README.md
@@ -935,7 +935,8 @@ from itertools import *
 
 >>> combinations_with_replacement('abc', 2)
 [('a', 'a'), ('a', 'b'), ('a', 'c'), 
- ('b', 'b'), ('b', 'c'), ('c', 'c')]
+ ('b', 'b'), ('b', 'c'), 
+ ('c', 'c')]
 
 >>> permutations('abc', 2)
 [('a', 'b'), ('a', 'c'),