]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🌐 Update typo in Chinese translation for `docs/zh/docs/advanced/testing-dependencies...
author白宦成 <bestony@linux.com>
Sun, 4 Aug 2024 17:01:03 +0000 (01:01 +0800)
committerGitHub <noreply@github.com>
Sun, 4 Aug 2024 17:01:03 +0000 (12:01 -0500)
docs/zh/docs/advanced/testing-dependencies.md

index dc0f88b33141ddafaa05be50172eb95f8331ed19..487f5ebf554c3a9a04becd6022248b0951ae86bc 100644 (file)
@@ -22,7 +22,7 @@
 
 ### 使用 `app.dependency_overrides` 属性
 
-对于这些用例,**FastAPI** 应用支持 `app.dependcy_overrides` 属性,该属性就是**字典**。
+对于这些用例,**FastAPI** 应用支持 `app.dependency_overrides` 属性,该属性就是**字典**。
 
 要在测试时覆盖原有依赖项,这个字典的键应当是原依赖项(函数),值是覆盖依赖项(另一个函数)。