Skip to content

Commit b4ba1b5

Browse files
authored
Fix two minor typos. (#124)
1 parent 8ae2da1 commit b4ba1b5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/topics/frequently-asked-questions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Sure. The `django-vanilla-views` package doesn't happen to use mixin classes, b
1212

1313
### Can I use decorators with Vanilla views?
1414

15-
Yes. Using decorators with `django-vanilla-view` is *exactly* the same as using decorators with Django's regular class-based view. You can [wrap the decorator in the URL conf][urlconf-decorators], like so:
15+
Yes. Using decorators with `django-vanilla-views` is *exactly* the same as using decorators with Django's regular class-based view. You can [wrap the decorator in the URL conf][urlconf-decorators], like so:
1616

1717
urlpatterns = patterns('',
1818
(r'^create-report/', login_required(CreateReportView.as_view())),
@@ -46,7 +46,7 @@ Actually not really. The base views and the model views do share some common im
4646

4747
It's also worth noting that Django's existing class based views also include duplication despite being implemented using a mixin style. For example, both `SingleObjectMixin` and `MultipleObjectMixin` implement a functionally identical `get_queryset()` method.
4848

49-
### What about seperation of concerns?
49+
### What about separation of concerns?
5050

5151
The base classes used by vanilla views include a small core set of functionality. In the author's opinion there's no real practical issue introduced here, and the design trade-off should favor simplicity of implementation.
5252

0 commit comments

Comments
 (0)