]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typo in `docs/tutorial/code-structure.md` (#91)
authorDhiraj Gupta <dhiraj@traversient.com>
Sat, 27 Aug 2022 20:32:02 +0000 (16:32 -0400)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 20:32:02 +0000 (20:32 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/tutorial/code-structure.md

index 0d91b4d5f5ce34c47dcf417e669a338738314fe6..31698a48b58572c2a8e774a450700605f84d520d 100644 (file)
@@ -8,7 +8,7 @@ The class `Hero` has a reference to the class `Team` internally.
 
 But the class `Team` also has a reference to the class `Hero`.
 
-So, if those two classes where in separate files and you tried to import the classes in each other's file directly, it would result in a **circular import**. 🔄
+So, if those two classes were in separate files and you tried to import the classes in each other's file directly, it would result in a **circular import**. 🔄
 
 And Python will not be able to handle it and will throw an error. 🚨