Skip to content

Commit 5bd94cc

Browse files
committed
Fix broken link
1 parent 50b1317 commit 5bd94cc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

language/Differences-from-Haskell.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ There is no implicit `Prelude` import in PureScript, the `Prelude` module is jus
1212

1313
The generally accepted "standard" `Prelude` is the [`purescript-prelude`](https://github.com/purescript/purescript-prelude) library.
1414

15-
## Module Imports
15+
## Module Imports / Exports
1616

1717
Type classes in modules must be specifically imported using the `class` keyword.
1818

@@ -22,6 +22,10 @@ module B where
2222
import A (class Fab)
2323
```
2424

25+
There is no `qualified` keyword in PureScript. Writing `import Data.List as List` has the same effect as writing `import qualified Data.List as List` in Haskell.
26+
27+
Module imports and exports are fully documented on the [Modules](Modules.md) page.
28+
2529
## Types
2630

2731
### Explicit forall
@@ -238,10 +242,6 @@ apply f x = f x
238242
infixr 0 apply as $
239243
```
240244

241-
## Export lists
242-
243-
Documented at: [Export lists](Export-lists.md)
244-
245245
## Extensions
246246

247247
The PureScript compiler does not support GHC-like language extensions. However, there are some "built-in" language features that are equivalent (or at least similar) to a number of GHC extensions. These currently are:

0 commit comments

Comments
 (0)
close