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

Fixed code typo in Modules.md #340

Merged
merged 1 commit into from
Jul 14, 2016
Merged
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/Modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ For example:
##### math-lib.d.ts

```ts
export const isPrime(x: number): boolean;'
export const isPrime(x: number): boolean;
export as namespace mathLib;
```

Expand Down