From ccb64e9fa42e8c3b5350bc13ce391c496637f73b Mon Sep 17 00:00:00 2001 From: minaminao Date: Tue, 28 Mar 2023 22:57:39 +0900 Subject: [PATCH] Fix the style of bullet points --- docs/path-resolution.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/path-resolution.rst b/docs/path-resolution.rst index c61abce0a..f63f5e79d 100644 --- a/docs/path-resolution.rst +++ b/docs/path-resolution.rst @@ -253,6 +253,7 @@ The compiler resolves the import into a source unit name based on the import pat #. We start with the source unit name of the importing source unit. #. The last path segment with preceding slashes is removed from the resolved name. #. Then, for every segment in the import path, starting from the leftmost one: + - If the segment is ``.``, it is skipped. - If the segment is ``..``, the last path segment with preceding slashes is removed from the resolved name. - Otherwise, the segment (preceded by a single slash if the resolved name is not empty), is appended to the resolved name.