From 47caad72b40c690939ffdb6bd70c24a8244c07d3 Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Thu, 20 Feb 2025 15:19:28 +0900 Subject: [PATCH] Update Writerside/topics/In-memory-file-analysis.md Co-authored-by: Marco Pennekamp --- Writerside/topics/In-memory-file-analysis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Writerside/topics/In-memory-file-analysis.md b/Writerside/topics/In-memory-file-analysis.md index a70b569..025d8fe 100644 --- a/Writerside/topics/In-memory-file-analysis.md +++ b/Writerside/topics/In-memory-file-analysis.md @@ -95,7 +95,7 @@ file.contextModule = contextModule If the context module includes a dependency to the Kotlin Standard library, the analysis will no longer produce errors. The created file can reference declarations from the context module, including `internal` ones. -However, no matter what is be written in our newly created file, it will not affect resolution of our context file. +However, no matter the content of our newly created file, it will not affect resolution of our context file. Such as, if we declare a function in the `file`, it will not be visible from the `contextFile`. Here is the complete code of our example: