From b9b50213bb84896f7f6300a3d50efaf3516294af Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Mon, 18 Mar 2013 18:46:08 -0300 Subject: [PATCH] Quick grammar fix --- docs/writing/structure.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/structure.rst b/docs/writing/structure.rst index cd64763..0014139 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -281,7 +281,7 @@ Decorators ---------- The Python language provides a simple yet powerful syntax called 'decorators'. -A decorator is a function or a class that wraps (or decorate) a function +A decorator is a function or a class that wraps (or decorates) a function or a method. The 'decorated' function or method will replace the original 'undecorated' function or method. Because functions are first-class objects in Python, it can be done 'manually', but using the @decorator syntax is