Commit f2c3a88f by Stephan Groß

Merge pull request #1022 from rlr/missing-comma

Add missing comma to generic view example.
parents 9e9233f8 3802442c
...@@ -40,7 +40,7 @@ For more complex cases you might also want to override various methods on the vi ...@@ -40,7 +40,7 @@ For more complex cases you might also want to override various methods on the vi
For very simple cases you might want to pass through any class attributes using the `.as_view()` method. For example, your URLconf might include something the following entry. For very simple cases you might want to pass through any class attributes using the `.as_view()` method. For example, your URLconf might include something the following entry.
url(r'^/users/', ListCreateAPIView.as_view(model=User) name='user-list') url(r'^/users/', ListCreateAPIView.as_view(model=User), name='user-list')
--- ---
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment