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

Update mentions of internal/external modules to use namespaces/modules #51

Merged
merged 9 commits into from
Jun 2, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/Functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Functions are the fundamental building block of any applications in JavaScript.
They're how you build up layers of abstraction, mimicking classes, information hiding, and modules.
In TypeScript, while there are classes and modules, function still play the key role in describing how to `do` things.
In TypeScript, while there are classes, namespaces, and modules, function still play the key role in describing how to *do* things.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This emphasis seems silly, but I'm willing to keep it.

TypeScript also adds some new capabilities to the standard JavaScript functions to make them easier to work with.

# Functions
Expand Down
2 changes: 1 addition & 1 deletion pages/Generics.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ When we use `GenericIdentityFn`, we now will also need to specify the correspond
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.

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

# Generic Classes

Expand Down
Loading