Skip to content

Commit 22565d9

Browse files
edmorleylovelydinosaur
authored andcommitted
Docs: Fix a few typos in the release notes and tutorial (#5483)
1 parent eb3d078 commit 22565d9

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

docs/topics/3.7-announcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ This will likely be timed so that any REST framework development here ties in wi
128128

129129
[funding]: funding.md
130130
[schema-docs]: ../api-guide/schemas.md
131-
[api-star]: https://github.com/encode/apistar
131+
[api-star]: https://github.com/encode/apistar

docs/topics/release-notes.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ You can determine your currently installed version using `pip freeze`:
7171
* Fixed a deprecation warning in serializers.ModelField [#5058][gh5058]
7272
* Added a more explicit error message when `get_queryset` returned `None` [#5348][gh5348]
7373
* Fix docs for Response `data` description [#5361][gh5361]
74-
* Fix __pychache__/.pyc excludes when packaging [#5373][gh5373]
74+
* Fix __pycache__/.pyc excludes when packaging [#5373][gh5373]
7575
* Fix default value handling for dotted sources [#5375][gh5375]
7676
* Ensure content_type is set when passing empty body to RequestFactory [#5351][gh5351]
7777
* Fix ErrorDetail Documentation [#5380][gh5380]
@@ -80,7 +80,7 @@ You can determine your currently installed version using `pip freeze`:
8080
* Fix ModelSerializer custom named fields with source on model [#5388][gh5388]
8181
* Fixed the MultipleFieldLookupMixin documentation example to properly check for object level permission [#5398][gh5398]
8282
* Update get_object() example in permissions.md [#5401][gh5401]
83-
* Fix authtoken managment command [#5415][gh5415]
83+
* Fix authtoken management command [#5415][gh5415]
8484
* Fix schema generation markdown [#5421][gh5421]
8585
* Allow `ChoiceField.choices` to be set dynamically [#5426][gh5426]
8686
* Add the project layout to the quickstart [#5434][gh5434]
@@ -163,15 +163,15 @@ You can determine your currently installed version using `pip freeze`:
163163

164164
* Support for Safari & IE in API docs. ([#4959][gh4959], [#4961][gh4961])
165165
* Add missing `mark_safe` in API docs template tags. ([#4952][gh4952], [#4953][gh4953])
166-
* Add missing glyicon fonts. ([#4950][gh4950], [#4951][gh4951])
166+
* Add missing glyphicon fonts. ([#4950][gh4950], [#4951][gh4951])
167167
* Fix One-to-one fields in API docs. ([#4955][gh4955], [#4956][gh4956])
168168
* Test clean ups. ([#4949][gh4949])
169169

170170
### 3.6.1
171171

172172
**Date**: [9th March 2017][3.6.1-milestone]
173173

174-
* Ensure `markdown` dependancy is optional. ([#4947][gh4947])
174+
* Ensure `markdown` dependency is optional. ([#4947][gh4947])
175175

176176
### 3.6.0
177177

@@ -296,7 +296,7 @@ See the [release announcement][3.6-release].
296296

297297
**Date**: [5th August 2016][3.4.3-milestone]
298298

299-
* Include fallaback for users of older TemplateHTMLRenderer internal API. ([#4361][gh4361])
299+
* Include fallback for users of older TemplateHTMLRenderer internal API. ([#4361][gh4361])
300300

301301
### 3.4.2
302302

@@ -395,7 +395,7 @@ See the [release announcement][3.6-release].
395395
* ListSerializer doesn't handle unique_together constraints. ([#3970][gh3970])
396396
* Add missing migration file. ([#3968][gh3968])
397397
* `OrderingFilter` should call `get_serializer_class()` to determine default fields. ([#3964][gh3964])
398-
* Remove old django checks from tests and compat. ([#3953][gh3953])
398+
* Remove old Django checks from tests and compat. ([#3953][gh3953])
399399
* Support callable as the value of `initial` for any `serializer.Field`. ([#3943][gh3943])
400400
* Prevented unnecessary distinct() call in SearchFilter. ([#3938][gh3938])
401401
* Fix None UUID ForeignKey serialization. ([#3936][gh3936])
@@ -579,7 +579,7 @@ See the [release announcement][3.6-release].
579579
* Fix behavior of `allow_blank=False` when used with `trim_whitespace=True`. ([#2712][gh2712])
580580
* Fix issue with some field combinations incorrectly mapping to an invalid `allow_blank` argument. ([#3011][gh3011])
581581
* Fix for output representations with prefetches and modified querysets. ([#2704][gh2704], [#2727][gh2727])
582-
* Fix assertion error when CursorPagination is provided with certains invalid query parameters. (#2920)[gh2920].
582+
* Fix assertion error when CursorPagination is provided with certain invalid query parameters. (#2920)[gh2920].
583583
* Fix `UnicodeDecodeError` when invalid characters included in header with `TokenAuthentication`. ([#2928][gh2928])
584584
* Fix transaction rollbacks with `@non_atomic_requests` decorator. ([#3016][gh3016])
585585
* Fix duplicate results issue with Oracle databases using `SearchFilter`. ([#2935][gh2935])
@@ -619,7 +619,7 @@ See the [release announcement][3.6-release].
619619
* Use default reason phrases from HTTP standard. ([#2764][gh2764], [#2763][gh2763])
620620
* Raise error when `ModelSerializer` used with abstract model. ([#2757][gh2757], [#2630][gh2630])
621621
* Handle reversal of non-API view_name in `HyperLinkedRelatedField` ([#2724][gh2724], [#2711][gh2711])
622-
* Dont require pk strictly for related fields. ([#2745][gh2745], [#2754][gh2754])
622+
* Don't require pk strictly for related fields. ([#2745][gh2745], [#2754][gh2754])
623623
* Metadata detects null boolean field type. ([#2762][gh2762])
624624
* Proper handling of depth in nested serializers. ([#2798][gh2798])
625625
* Display viewset without paginator. ([#2807][gh2807])
@@ -1525,4 +1525,4 @@ For older release notes, [please see the version 2.x documentation][old-release-
15251525
[gh5452]: https://github.com/encode/django-rest-framework/issues/5452
15261526
[gh5342]: https://github.com/encode/django-rest-framework/issues/5342
15271527
[gh5454]: https://github.com/encode/django-rest-framework/issues/5454
1528-
[gh5482]: https://github.com/encode/django-rest-framework/issues/5482
1528+
[gh5482]: https://github.com/encode/django-rest-framework/issues/5482

docs/tutorial/2-requests-and-responses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The wrappers also provide behaviour such as returning `405 Method Not Allowed` r
3535

3636
Okay, let's go ahead and start using these new components to write a few views.
3737

38-
We don't need our `JSONResponse` class in `views.py` anymore, so go ahead and delete that. Once that's done we can start refactoring our views slightly.
38+
We don't need our `JSONResponse` class in `views.py` any more, so go ahead and delete that. Once that's done we can start refactoring our views slightly.
3939

4040
from rest_framework import status
4141
from rest_framework.decorators import api_view

0 commit comments

Comments
 (0)