From 96fb1d42d14e437dc164bc61aee166237cb8bd62 Mon Sep 17 00:00:00 2001 From: Thomas Ballinger Date: Thu, 5 Jul 2012 14:41:21 -0400 Subject: [PATCH] remove slashes in code sample in style guide --- docs/writing/style.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/writing/style.rst b/docs/writing/style.rst index 462ffba..b8e2199 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -30,9 +30,9 @@ most explicit and straightforward manner is preferred. .. code-block:: python - def make_complex(\*args): + def make_complex(*args): x, y = args - return dict(\**locals()) + return dict(**locals()) **Good** -- 1.8.0.2