From ed1d69fdd40b8fe32f0177c01d6cb3af98a22e59 Mon Sep 17 00:00:00 2001 From: MSakamaki Date: Mon, 8 Apr 2019 14:42:26 +0900 Subject: [PATCH] docs(nx): fix typo on tutorial Tutorial is abort because there is no export in Todo interface, fix it --- docs/tutorial/07-share-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/07-share-code.md b/docs/tutorial/07-share-code.md index fc766282e6..cc1223b133 100644 --- a/docs/tutorial/07-share-code.md +++ b/docs/tutorial/07-share-code.md @@ -36,7 +36,7 @@ myorg/ **Copy the interface into the library's index file.** ```typescript -interface Todo { +export interface Todo { title: string; } ```