Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 5315609

Browse files
Merge pull request #51 from Microsoft/namespaces
Update mentions of internal/external modules to use namespaces/modules
2 parents b1ce27c + 708d354 commit 5315609

File tree

4 files changed

+104
-85
lines changed

4 files changed

+104
-85
lines changed

pages/Functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Functions are the fundamental building block of any applications in JavaScript.
44
They're how you build up layers of abstraction, mimicking classes, information hiding, and modules.
5-
In TypeScript, while there are classes and modules, function still play the key role in describing how to `do` things.
5+
In TypeScript, while there are classes, namespaces, and modules, function still play the key role in describing how to *do* things.
66
TypeScript also adds some new capabilities to the standard JavaScript functions to make them easier to work with.
77

88
# Functions

pages/Generics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ When we use `GenericIdentityFn`, we now will also need to specify the correspond
190190
Understanding when to put the type parameter directly on the call signature and when to put it on the interface itself will be helpful in describing what aspects of a type are generic.
191191

192192
In addition to generic interfaces, we can also create generic classes.
193-
Note that it is not possible to create generic enums and modules.
193+
Note that it is not possible to create generic enums and namespaces.
194194

195195
# Generic Classes
196196

0 commit comments

Comments
 (0)