summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-05-14 20:09:52 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2014-05-14 20:09:52 -0400
commit597ab3ce98e1d73975901da0ee3cdcccd825eeb4 (patch)
treefafd0bf404392485a3afeec7f79d71a25d3b4c2d /docs
parentb90c112cb1c3d6f80a748c784a191741f4ea3948 (diff)
parent5ab95168cc719a59b64eb3923e9641d8b5f619e1 (diff)
Merge pull request #2654 from merwok/patch-1
Fix typo that disabled code example highlighting
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/instances.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/instances.txt b/docs/ref/models/instances.txt
index 1b7226b648..2cbce35447 100644
--- a/docs/ref/models/instances.txt
+++ b/docs/ref/models/instances.txt
@@ -509,7 +509,7 @@ for all other models it is simply the model's class.
For example::
- form django.db import models
+ from django.db import models
class MyModel(models.Model):
id = models.AutoField(primary_key=True)