]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:memo: Update response-directly.md, fix link (#306)
authordmontagu <35119617+dmontagu@users.noreply.github.com>
Thu, 13 Jun 2019 16:34:20 +0000 (09:34 -0700)
committerSebastián Ramírez <tiangolo@gmail.com>
Thu, 13 Jun 2019 16:34:20 +0000 (18:34 +0200)
docs/tutorial/response-directly.md

index f622cab854f1e49c5fd2b1f1ff3c75d629d40a80..0feb937930539ccff3f33c89d145f414e9d7bc88 100644 (file)
@@ -56,7 +56,7 @@ You could put your XML content in a string, put it in a Starlette Response, and
 
 When you return a `Response` directly its data is not validated, converted (serialized), nor documented automatically.
 
-But you can still <a href="tutorial/additional-responses/" target="_blank">document it</a>.
+But you can still <a href="https://fastapi.tiangolo.com/tutorial/additional-responses/" target="_blank">document it</a>.
 
 In the next sections you will see how to use/declare these custom `Response`s while still having automatic data conversion, documentation, etc.