From 4cc72c2647b6a58a20124b0228268bb6b90e7b37 Mon Sep 17 00:00:00 2001 From: Volodymyr Kochetkov Date: Mon, 19 Feb 2024 20:07:24 +0200 Subject: [PATCH] feat: issue-2008 update doc strings --- fastapi/applications.py | 16 ++++++++-------- fastapi/routing.py | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/fastapi/applications.py b/fastapi/applications.py index 5304d57ef..8493851c6 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -1796,7 +1796,7 @@ class FastAPI(Starlette): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -2178,7 +2178,7 @@ class FastAPI(Starlette): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -2565,7 +2565,7 @@ class FastAPI(Starlette): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -2952,7 +2952,7 @@ class FastAPI(Starlette): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -3334,7 +3334,7 @@ class FastAPI(Starlette): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -3716,7 +3716,7 @@ class FastAPI(Starlette): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -4098,7 +4098,7 @@ class FastAPI(Starlette): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -4485,7 +4485,7 @@ class FastAPI(Starlette): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, diff --git a/fastapi/routing.py b/fastapi/routing.py index 8c6c7e67e..e52b633a1 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -1692,7 +1692,7 @@ class APIRouter(routing.Router): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -2078,7 +2078,7 @@ class APIRouter(routing.Router): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -2469,7 +2469,7 @@ class APIRouter(routing.Router): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -2860,7 +2860,7 @@ class APIRouter(routing.Router): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -3246,7 +3246,7 @@ class APIRouter(routing.Router): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -3632,7 +3632,7 @@ class APIRouter(routing.Router): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -4023,7 +4023,7 @@ class APIRouter(routing.Router): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False, @@ -4414,7 +4414,7 @@ class APIRouter(routing.Router): Optional[bool], Doc( """ - Auto create options route. + Automatically create a route to handle the OPTIONS HTTP verb. """ ), ] = False,