]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix broken link in `alternatives.md` (#5455)
authorShubham <75021117+su-shubham@users.noreply.github.com>
Mon, 31 Oct 2022 17:16:57 +0000 (22:46 +0530)
committerGitHub <noreply@github.com>
Mon, 31 Oct 2022 17:16:57 +0000 (17:16 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/alternatives.md

index 68aa3150d7194c0584179173838df5937c9d2e5d..bcd406bf9d50e9e0a06987a7617edbd4b2e69240 100644 (file)
@@ -123,7 +123,7 @@ That's why when talking about version 2.0 it's common to say "Swagger", and for
 
 There are several Flask REST frameworks, but after investing the time and work into investigating them, I found that many are discontinued or abandoned, with several standing issues that made them unfit.
 
-### <a href="https://marshmallow.readthedocs.io/en/3.0/" class="external-link" target="_blank">Marshmallow</a>
+### <a href="https://marshmallow.readthedocs.io/en/stable/" class="external-link" target="_blank">Marshmallow</a>
 
 One of the main features needed by API systems is data "<abbr title="also called marshalling, conversion">serialization</abbr>" which is taking data from the code (Python) and converting it into something that can be sent through the network. For example, converting an object containing data from a database into a JSON object. Converting `datetime` objects into strings, etc.