From 3ae9542c2473e557566cc065156c6b1054ce3894 Mon Sep 17 00:00:00 2001
From: Adrian Holovaty <adrian@holovaty.com>
Date: Tue, 22 Nov 2005 04:44:21 +0000
Subject: [PATCH] Beefed up docs for floatformat template filter

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1342 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 docs/templates.txt | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/docs/templates.txt b/docs/templates.txt
index 06910e1a91..2560e1f1a1 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -770,8 +770,12 @@ Replaces ampersands with ``&amp;`` entities.
 floatformat
 ~~~~~~~~~~~
 
-Displays a floating point number as 34.2 (with one decimal places) -- but only
-if there's a point to be displayed.
+Rounds a floating-point number to one decimal place -- but only if there's a
+decimal part to be displayed. For example:
+
+    * ``36.123`` gets converted to ``36.123``
+    * ``36.15`` gets converted to ``36.2``
+    * ``36`` gets converted to ``36``
 
 get_digit
 ~~~~~~~~~