From b4bb345b94f7f6415d3a3aa258dbe46478fcfff5 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 20 Nov 2005 17:36:16 +0000 Subject: [PATCH] Another change to docs/model-api.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@1307 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/model-api.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/model-api.txt b/docs/model-api.txt index d8cc33ba87..344f34ef2c 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -1080,8 +1080,7 @@ the resulting rows. Example:: return row If your custom SQL statement alters the data in your database -- for example, -via a ``DELETE``, ``INSERT`` or ``UPDATE`` -- you'll need to call -``db.commit()``. example:: +via a ``DELETE`` or ``UPDATE`` -- you'll need to call ``db.commit()``. Example:: def my_custom_sql2(self): cursor = db.cursor()