Skip to content

Commit

Permalink
📦 Updating english book sources.
Browse files Browse the repository at this point in the history
Until commit d94e849.
  • Loading branch information
Jimskapt committed Jan 11, 2020
1 parent c407387 commit d246ba7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
6 changes: 1 addition & 5 deletions FRENCH/src/ch04-02-references-and-borrowing.md
Original file line number Diff line number Diff line change
Expand Up @@ -564,12 +564,8 @@ se poursuit jusqu'au dernier endroit où cette référence est utilisée. Par
exemple, le code suivant va se compiler car la dernière utilisation de la
référence immuable est située avant l'introduction de la référence mutable :

<!-- This example is being ignored because there's a bug in rustdoc making the
edition2018 not work. The bug is currently fixed in nightly, so when we update
the book to >= 1.35, `ignore` can be removed from this example. -->

<!--
```rust,edition2018,ignore
```rust,edition2018
let mut s = String::from("hello");
let r1 = &s; // no problem
Expand Down
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# French translation of the book "The Rust Programming Language"
> # Le langage de programmation Rust
>
> **This is the french translation of the book "The Rust Programming Language"**
>
> *English Book : [https://github.com/rust-lang/book](https://github.com/rust-lang/book)*
>
> Translations are inside `/FRENCH/` folder. Everything else should be remaing as the English Book (except this README.md).
>
> Want to help to translate ?
> Please read the file
> [/FRENCH/CONTRIBUTING.md](https://github.com/Jimskapt/rust-book-fr/blob/french-release/FRENCH/CONTRIBUTING.md) !
*English Book : [https://github.com/rust-lang/book](https://github.com/rust-lang/book)*

Translations are inside `/FRENCH/` folder. Everything else should be remaing as the English Book (except this README.md).

Want to help to translate ? Please read the file [/FRENCH/CONTRIBUTING.md](https://github.com/Jimskapt/rust-book-fr/blob/french-release/FRENCH/CONTRIBUTING.md) !

<!--
# The Rust Programming Language

[![Build Status](https://travis-ci.com/rust-lang/book.svg?branch=master)](https://travis-ci.com/rust-lang/book)
Expand Down Expand Up @@ -113,4 +116,3 @@ script. It needs a dictionary of valid words, which is provided in
`dictionary.txt`. If the script produces a false positive (say, you used word
`BTreeMap` which the script considers invalid), you need to add this word to
`dictionary.txt` (keep the sorted order for consistency).
-->

0 comments on commit d246ba7

Please sign in to comment.