Skip to content

Commit 26d359d

Browse files
authored
Fix a few typos in the docs (#125)
1 parent b4ba1b5 commit 26d359d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ The inheritance hierarchy of the views in `django-vanilla-views` is trivial, mak
144144

145145
#### Inheritance hierarchy, Django style.
146146

147-
Here's the corresponding inheritance hiearchy in Django's implementation of `CreateView`.
147+
Here's the corresponding inheritance hierarchy in Django's implementation of `CreateView`.
148148

149149
+--> SingleObjectTemplateResponseMixin --> TemplateResponseMixin
150150
|

docs/migration/base-views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Although a large amount of API has been removed, the functionality that the view
1616

1717
---
1818

19-
**These are all removed**. If you need to override how the form is intialized, just override `get_form()`.
19+
**These are all removed**. If you need to override how the form is initialized, just override `get_form()`.
2020

2121
For example, instead of this:
2222

docs/migration/model-views.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It covers `ListView`, `DetailView`, `CreateView`, `UpdateView` and `DeleteView`.
88

99
Wherever API points have been removed, we provide examples of what you should be using instead.
1010

11-
This scope of this migration guide may appear intimidating at first if you're intending to port your existing views accross to using `django-vanilla-views`, but you should be able to approach refactorings in a fairly simple step-by-step manner, working through each item in the list one at a time.
11+
This scope of this migration guide may appear intimidating at first if you're intending to port your existing views across to using `django-vanilla-views`, but you should be able to approach refactorings in a fairly simple step-by-step manner, working through each item in the list one at a time.
1212

1313
Although a large amount of API has been removed, the functionality that the views provide should be identical to Django's existing views. If you believe you've found some behavior in Django's generic class based views that can't also be trivially achieved in `django-vanilla-views`, then please [open a ticket][tickets], and we'll treat it as a bug.
1414

@@ -46,7 +46,7 @@ For more complex lookups, override `get_object()`, like so:
4646

4747
---
4848

49-
**These are all removed**. If you need to override how the form is intialized, just override `get_form()`.
49+
**These are all removed**. If you need to override how the form is initialized, just override `get_form()`.
5050

5151
For example, instead of this:
5252

docs/topics/frequently-asked-questions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Usage
44

5-
### Won't I lose functionality or flexiblity?
5+
### Won't I lose functionality or flexibility?
66

77
No. Everything you can do with Django's standard class based views you can also do with `django-vanilla-views`. The migration guides cover all the bits of API that have been removed, and explain how you can easily achieve the same functionality with vanilla views.
88

0 commit comments

Comments
 (0)