From 695bc0d191c126a948a7cf3acc3e37d9377ebd20 Mon Sep 17 00:00:00 2001 From: Cody Scott Date: Thu, 10 Oct 2013 17:52:50 -0400 Subject: [PATCH] Small improvements to docs/topics/db/models.txt --- docs/topics/db/models.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index b0011e1098..163d75560c 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -4,9 +4,9 @@ Models .. module:: django.db.models -A model is the single, definitive source of data about your data. It contains -the essential fields and behaviors of the data you're storing. Generally, each -model maps to a single database table. +A model is the single, definitive source of information about your data. It +contains the essential fields and behaviors of the data you're storing. +Generally, each model maps to a single database table. The basics: @@ -48,7 +48,7 @@ Some technical notes: * The name of the table, ``myapp_person``, is automatically derived from some model metadata but can be overridden. See :ref:`table-names` for more - details.. + details. * An ``id`` field is added automatically, but this behavior can be overridden. See :ref:`automatic-primary-key-fields`. @@ -113,7 +113,7 @@ determine a few things: * The database column type (e.g. ``INTEGER``, ``VARCHAR``). -* The default :doc:`widget ` to use when rendering a form +* The default HTML :doc:`widget ` to use when rendering a form field (e.g. ````, ``