Skip to content

Commit

Permalink
docs: Fix simple typo, hierachy -> hierarchy (#90)
Browse files Browse the repository at this point in the history
There is a small typo in README.md, docs/index.md.

Should read `hierarchy` rather than `hierachy`.
  • Loading branch information
timgates42 committed Mar 24, 2020
1 parent b4961b7 commit ceb8e3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -135,7 +135,7 @@ For example:

To help give you an idea of the relative complexity of `django-vanilla-views` against Django's existing implementations, let's compare the two.

#### Inheritance hierachy, Vanilla style.
#### Inheritance hierarchy, Vanilla style.

The inheritance hierarchy of the views in `django-vanilla-views` is trivial, making it easy to figure out the control flow in the view.

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Expand Up @@ -138,15 +138,15 @@ For example:

To help give you an idea of the relative complexity of `django-vanilla-views` against Django's existing implementations, let's compare the two.

#### Inheritance hierachy, Vanilla style.
#### Inheritance hierarchy, Vanilla style.

The inheritance hierarchy of the views in `django-vanilla-views` is trivial, making it easy to figure out the control flow in the view.

CreateView --> GenericModelView --> View

**Total number of source files**: 1 ([model_views.py][model_views.py])

#### Inheritance hierachy, Django style.
#### Inheritance hierarchy, Django style.

Here's the corresponding inheritance hiearchy in Django's implementation of `CreateView`.

Expand Down

0 comments on commit ceb8e3f

Please sign in to comment.