From 8c6a6f3b1a3c849235615d960691bf66822d12f5 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 3 Dec 2008 05:53:57 +0000 Subject: [PATCH] [1.0.X] Fixed #9734 -- Typo fix in the custom fields documentation, pointed out by col16. Backport of r9557 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9560 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/howto/custom-model-fields.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt index 57c805e200..056a54e193 100644 --- a/docs/howto/custom-model-fields.txt +++ b/docs/howto/custom-model-fields.txt @@ -31,12 +31,12 @@ Our example object ------------------ Creating custom fields requires a bit of attention to detail. To make things -easier to follow, we'll use a consistent example throughout this document. -Suppose you have a Python object representing the deal of cards in a hand of -Bridge_. (Don't worry, you don't know how to play Bridge to follow this -example. You only need to know that 52 cards are dealt out equally to four -players, who are traditionally called *north*, *east*, *south* and *west*.) -Our class looks something like this:: +easier to follow, we'll use a consistent example throughout this document: +wrapping a Python object representing the deal of cards in a hand of Bridge_. +Don't worry, you don't have know how to play Bridge to follow this example. +You only need to know that 52 cards are dealt out equally to four players, who +are traditionally called *north*, *east*, *south* and *west*. Our class looks +something like this:: class Hand(object): def __init__(self, north, east, south, west):