Skip to content

Commit 44b164c

Browse files
committed
Wrapped and removed extra text from scenarios/db.
1 parent 01af1bb commit 44b164c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

docs/scenarios/db.rst

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,11 @@ Django ORM
3030
The Django ORM is the interface used by `Django <http://www.djangoproject.com>`_
3131
to provide database access.
3232

33-
It's based on the idea of `models <https://docs.djangoproject.com/en/1.3/#the-model-layer>`_, an abstraction that makes it easier to
34-
manipulate data in Python.
33+
It's based on the idea of `models <https://docs.djangoproject.com/en/1.3/#the-model-layer>`_,
34+
an abstraction that makes it easier to manipulate data in Python.
3535

3636
The basics:
3737

3838
- Each model is a Python class that subclasses django.db.models.Model.
3939
- Each attribute of the model represents a database field.
4040
- Django gives you an automatically-generated database-access API; see `Making queries <https://docs.djangoproject.com/en/dev/topics/db/queries/>`__.
41-
to provide database access.
42-
43-

0 commit comments

Comments
 (0)