Skip to content

Commit a6aeeaa

Browse files
authored
adjust docs to remove reference to Lean library (#146)
1 parent 4c48e0d commit a6aeeaa

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

docs/TESTS.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,10 @@ Feel free to change it completely if you think it is the right thing to do.
5959

6060
## Using packages
6161

62-
Lean projects using Lake may always import two additional packages:
63-
64-
1. The core module `Lean`, which defines core elements of the language.
65-
2. The standard library `Std`, which contains additional data structures, IO and system APIs, and other basic utilities.
66-
67-
Those modules may be imported and used in the same way:
62+
Lean projects using Lake may always import the standard library `Std`, which contains additional data structures, IO and system APIs, and other basic utilities.
63+
This import should be at the beggining of the file:
6864

6965
```lean
70-
import Lean
7166
import Std
7267
7368
def someMap : Std.HashMap Int Nat := ...
@@ -86,5 +81,5 @@ def someSet : TreeSet String := ...
8681

8782
External packages are not directly available and must be added as a dependency in `lakefile.toml`.
8883

89-
While working locally, you can use any packages you like.
90-
The online test runner, however, has access to only the default packages `Lean` and `Std`.
84+
While working locally, you can use any package you like.
85+
The online test runner, however, has access to only the standard library `Std`.

0 commit comments

Comments
 (0)