Skip to content

Commit 413935a

Browse files
authored
Update misc_docs/syntax/language_open.mdx
1 parent 5047073 commit 413935a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc_docs/syntax/language_open.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ category: "languageconstructs"
88

99
`open` is used to "open" a module so we can refer to the module's contents without needing to prepending the module's name.
1010

11-
In some cases, `open` will cause a warning due to existing identifiers and types being redefined by the opened module. In these cases, we can use `open!` instead which will suppress the warnings.
11+
In some cases, `open` will cause a "shadow warning" due to existing identifiers and types being redefined by an `open`ed module. You can explicitly ignore that warning by using an `open!` statement instead.
1212

1313
### Example
1414

0 commit comments

Comments
 (0)