aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorStephan Groß2012-10-29 08:54:14 +0100
committerStephan Groß2012-10-29 08:54:14 +0100
commit76db7d4c590957c7e81ce521a1ab5bfb6760afaf (patch)
treef524060d3f33684d6bb6b467fbc857b0793ffd71 /docs
parent0c71b4c10095f8783f205fc134a475c04a27f01b (diff)
downloaddjango-rest-framework-76db7d4c590957c7e81ce521a1ab5bfb6760afaf.tar.bz2
correct code indent
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial/1-serialization.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md
index c1ab49d1..f6dcca13 100644
--- a/docs/tutorial/1-serialization.md
+++ b/docs/tutorial/1-serialization.md
@@ -87,8 +87,8 @@ For the purposes of this tutorial we're going to start by creating a simple `Sni
default='python',
max_length=100)
style = models.CharField(choices=STYLE_CHOICES,
- default='friendly',
- max_length=100)
+ default='friendly',
+ max_length=100)
class Meta:
ordering = ('created',)