From 6fdf7d32b1983e4ed1faf735be56c1d97e9505d0 Mon Sep 17 00:00:00 2001 From: Ilir Beqiri Date: Sun, 11 Feb 2024 21:08:10 +0100 Subject: [PATCH] docs: fix typo in adding-source-files.md (#1490) --- docs/setup/adding-source-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/adding-source-files.md b/docs/setup/adding-source-files.md index 1cf0c24a6..8f8acb636 100644 --- a/docs/setup/adding-source-files.md +++ b/docs/setup/adding-source-files.md @@ -45,7 +45,7 @@ const project = new Project({ }); ``` -If you are adding source files to a project in other ways and want to ensure the all the source files dependended on by the added source files +If you are adding source files to a project in other ways and want to ensure the all the source files depended on by the added source files are also included in the Project, then call the `.resolveSourceFileDependencies()` after adding everything: ```ts