From: Dhiraj Gupta Date: Sat, 27 Aug 2022 20:32:02 +0000 (-0400) Subject: ✏ Fix typo in `docs/tutorial/code-structure.md` (#91) X-Git-Tag: 0.0.7~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dff4d15e8fac9531503c85fbcbefd32f8b42e31;p=thirdparty%2Ffastapi%2Fsqlmodel.git ✏ Fix typo in `docs/tutorial/code-structure.md` (#91) Co-authored-by: Sebastián Ramírez --- diff --git a/docs/tutorial/code-structure.md b/docs/tutorial/code-structure.md index 0d91b4d5..31698a48 100644 --- a/docs/tutorial/code-structure.md +++ b/docs/tutorial/code-structure.md @@ -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. 🚨