From fada097b47166d73e42ddc90b357e8dfa670b8a6 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 5 Jan 2021 18:33:59 +0100 Subject: [PATCH] doc: module cycles not allowed --- doc/docs.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/docs.md b/doc/docs.md index 2eaf1a93e0..c4b5deadf8 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -729,6 +729,8 @@ This may seem verbose at first, but it makes code much more readable and easier to understand - it's always clear which function from which module is being called. This is especially useful in large code bases. +Cyclic module imports are not allowed, like in Go. + ### Selective imports You can also import specific functions and types from modules directly: