浏览代码

Removed a nonexistent link in the docs.

Tim Graham 11 年之前
父节点
当前提交
4132e013ec
共有 1 个文件被更改,包括 7 次插入7 次删除
  1. 7 7
      docs/topics/db/models.txt

+ 7 - 7
docs/topics/db/models.txt

@@ -668,13 +668,13 @@ option reference </ref/models/options>`.
 Model attributes
 ================
 
-:attr:`~objects`
-    The most important attribute of a model is the 
-    :class:`~django.db.models.Manager`, which is the interface through which 
-    database query operations are provided to Django models and is used to 
-    :ref:`retrieve the instances <retrieving-objects>` from the database. If no 
-    custom Manager is defined, the default name is ``objects``. Managers are 
-    only accessible via model classes, not the model instances. 
+``objects``
+    The most important attribute of a model is the
+    :class:`~django.db.models.Manager`. It's the interface through which
+    database query operations are provided to Django models and is used to
+    :ref:`retrieve the instances <retrieving-objects>` from the database. If no
+    custom ``Manager`` is defined, the default name is ``objects``. Managers
+    are only accessible via model classes, not the model instances.
 
 .. _model-methods: