You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/integrations/fastapi-integration.txt
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -428,11 +428,11 @@ Our application has five routes:
428
428
429
429
.. step:: Delete Route
430
430
431
-
Because the ``delete_student`` is acting on a single document, we must
431
+
The ``delete_student`` is acting on a single document, so we must
432
432
supply an ``id`` in the URL. If we find a matching document and successfully
433
-
delete it, then we return an HTTP status of ``204`` or "No Content." In
434
-
this case, we do not return a document. If we cannot find a student with the
435
-
specified ``id``, then we return a ``404`` error.
433
+
delete it, then we return an HTTP status of ``204``, or "No Content," and we
434
+
do not return a document. If we cannot find a student with the specified
435
+
``id``, then we return a ``404`` error.
436
436
437
437
.. code-block:: python
438
438
@@ -457,7 +457,7 @@ More Resources
457
457
458
458
For more information about FastAPI integration, see the following resources:
459
459
460
-
- MongoDB's Full Stack FastAPI App Generator:
460
+
- MongoDB's Full Stack FastAPI App Generator
461
461
- `Blog post: Introducing the Full Stack FastAPI App Generator for Python Developers <https://www.mongodb.com/blog/post/introducing-full-stack-fast-api-app-generator-for-python-developers>`__
0 commit comments