summaryrefslogtreecommitdiffstats
path: root/docs/language-reference/07-declarations.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/language-reference/07-declarations.md')
-rw-r--r--docs/language-reference/07-declarations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/language-reference/07-declarations.md b/docs/language-reference/07-declarations.md
index 2df87b8a6..e3b7aa60d 100644
--- a/docs/language-reference/07-declarations.md
+++ b/docs/language-reference/07-declarations.md
@@ -642,7 +642,7 @@ float f = v.getLength();
int n = MyVector.getDimensionality();
```
-An extension declaration need not be placed in the same module as the type being extended; it is possible to extend a type from third-party or standard-library code.
+An extension declaration need not be placed in the same module as the type being extended; it is possible to extend a type from third-party or standard module code.
The members of an extension are only visible inside of modules that `import` the module declaring the extension;
extension members are *not* automatically visible wherever the type being extended is visible.