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

Remove stale footnote #1345

Merged
merged 1 commit into from
May 5, 2020
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
3 changes: 0 additions & 3 deletions src/types/literals.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,11 @@ fn main() {
There are some concepts used in the previous code that haven't been explained
yet, here's a brief explanation for the impatient readers:

* `fun(&foo)` is used to pass an argument to a function *by reference*, rather
than by value (`fun(foo)`). For more details see [borrowing][borrow].
* `std::mem::size_of_val` is a function, but called with its *full path*. Code
can be split in logical units called *modules*. In this case, the
`size_of_val` function is defined in the `mem` module, and the `mem` module
is defined in the `std` *crate*. For more details, see
[modules][mod] and [crates][crate].

[borrow]: ../scope/borrow.md
[mod]: ../mod.md
[crate]: ../crates.md