From 1f8dad69158a96d0649d321ce08ecc9c0465f962 Mon Sep 17 00:00:00 2001 From: Agnieszka Lasyk Date: Sun, 15 Nov 2015 13:05:15 +0100 Subject: Fixed #25755 -- Unified spelling of "website". --- docs/ref/forms/fields.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/ref/forms') diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt index dcb506a67a..eb4a0ab69a 100644 --- a/docs/ref/forms/fields.txt +++ b/docs/ref/forms/fields.txt @@ -111,12 +111,12 @@ We've specified ``auto_id=False`` to simplify the output:: >>> from django import forms >>> class CommentForm(forms.Form): ... name = forms.CharField(label='Your name') - ... url = forms.URLField(label='Your Web site', required=False) + ... url = forms.URLField(label='Your website', required=False) ... comment = forms.CharField() >>> f = CommentForm(auto_id=False) >>> print(f) Your name: - Your Web site: + Your website: Comment: ``label_suffix`` -- cgit v1.3