From 9ba2056f4e73157bb9b3d774fbc9d91cd6e9bac2 Mon Sep 17 00:00:00 2001 From: Luci Furtun Date: Tue, 9 May 2017 10:36:01 +0300 Subject: [PATCH] Update cheatsheet.rst Fix typo. --- cheatsheet.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheatsheet.rst b/cheatsheet.rst index d5a6e54..523fb43 100644 --- a/cheatsheet.rst +++ b/cheatsheet.rst @@ -84,7 +84,7 @@ Module level functions:: compile(pattern[, flags]) -> RegexObject match(pattern, string[, flags]) -> MatchObject - search(pattner, string[, flags]) -> MatchObject + search(pattern, string[, flags]) -> MatchObject findall(pattern, string[, flags]) -> list of strings finditer(pattern, string[, flags]) -> iter of MatchObjects split(pattern, string[, maxsplit, flags]) -> list of strings