From 0e8f8a92fab6fe5955e3842ed2e6f580c7b0e6d4 Mon Sep 17 00:00:00 2001 From: weishen-hong <57124685+weihenHong@users.noreply.github.com> Date: Fri, 15 Sep 2023 18:04:48 +0800 Subject: [PATCH] fix typo --- docs/interface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/interface.md b/docs/interface.md index b6dd5bc..a3b3a3f 100644 --- a/docs/interface.md +++ b/docs/interface.md @@ -526,7 +526,7 @@ type Country = { capital: string; } -interface Coutry { +interface Country { name: string; capital: string; }