From f452bc5979edfde88beed12d0bdfcd08f92efc57 Mon Sep 17 00:00:00 2001 From: Jason Date: Mon, 17 Jul 2023 17:15:43 +0800 Subject: [PATCH] typo --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 309782b..4834346 100644 --- a/docs/index.md +++ b/docs/index.md @@ -179,7 +179,7 @@ class UserWithAddress(UserDetails): address: str class UserWithFriends(UserDetails): - best_friend: UserDetail + best_friend: UserDetails friends: List[UserDetails] ```