Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rust note, typo fix #144

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This manual is generated by [mdBook](https://github.com/rust-lang/mdBook). We ar
* Add support for hiding lines in other languages [#1339](https://github.com/rust-lang/mdBook/pull/1339)
* Replace calling `rustdoc --test` from `mdbook test` with `./test`

To build this manual, first install the fork via
To build this manual, first [install Rust](https://www.rust-lang.org/tools/install) if necessary, then install the mdBook fork via
```bash
cargo install --git https://github.com/leanprover/mdBook mdbook
```
Expand Down
8 changes: 4 additions & 4 deletions introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,16 @@ theorem and_commutative (p q : Prop) : p ∧ q → q ∧ p :=
show q ∧ p from And.intro hq hp
```

Next to every code example in this book, you will see a button that reads "Copy to clipboard".
Next to every code example in this book, you will see a button that reads "Copy to clipboard".
Pressing the button copies the example with enough surrounding context to make the code compile correctly.
You can paste the example code into [VS Code](https://code.visualstudio.com/) and modify the examples, and Lean will check the results and provide feedback continuously as you type.
We recommend running the examples and experimenting with the code on your own as you work through the chapters that follow.
You can paste the example code into [VS Code](https://code.visualstudio.com/) and modify the examples, and Lean will check the results and provide feedback continuously as you type.
We recommend running the examples and experimenting with the code on your own as you work through the chapters that follow.
You can open this book in VS Code by using the command "Lean 4: Docs: Show Documentation Resources" and selecting "Theorem Proving in Lean 4" in the tab that opens.

Acknowledgments
---------------

This tutorial is an open access project maintained on Github. Many people have contributed to the effort, providing
This tutorial is an open access project maintained on GitHub. Many people have contributed to the effort, providing
corrections, suggestions, examples, and text. We are grateful to Ulrik Buchholz, Kevin Buzzard, Mario Carneiro, Nathan
Carter, Eduardo Cavazos, Amine Chaieb, Joe Corneli, William DeMeo, Marcus Klaas de Vries, Ben Dyer, Gabriel Ebner,
Anthony Hart, Simon Hudon, Sean Leather, Assia Mahboubi, Gihan Marasingha, Patrick Massot, Christopher John Mazey,
Expand Down