diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 049d33c..0774b2a 100644
a
|
b
|
look like this:
|
206 | 206 | :filename: mysite/settings.py |
207 | 207 | |
208 | 208 | INSTALLED_APPS = [ |
| 209 | 'polls', |
209 | 210 | 'django.contrib.admin', |
210 | 211 | 'django.contrib.auth', |
211 | 212 | 'django.contrib.contenttypes', |
212 | 213 | 'django.contrib.sessions', |
213 | 214 | 'django.contrib.messages', |
214 | 215 | 'django.contrib.staticfiles', |
215 | | 'polls', |
216 | 216 | ] |
217 | 217 | |
218 | 218 | Now Django knows to include the ``polls`` app. Let's run another command: |