Tiny typo: varible -> variable

Hi,
First, bravo, great job done here!
Then, I saw this tiny typo: varible -> variable.
Regards
pull/22/head
Lilian Besson 4 years ago committed by GitHub
parent d46e8b7db9
commit ccd6403945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1893,7 +1893,7 @@ fn check_skystate(state: &ThingsInTheSky) {
fn main() {
let time = 8; // it's 8 o'clock
let skystate = create_skystate(time); // create_skystate returns a ThingsInTheSky
check_skystate(&skystate); // Give it a reference so it can read the varible skystate
check_skystate(&skystate); // Give it a reference so it can read the variable skystate
}
```
@ -1922,7 +1922,7 @@ fn check_skystate(state: &ThingsInTheSky) {
fn main() {
let time = 8; // it's 8 o'clock
let skystate = create_skystate(time); // create_skystate returns a ThingsInTheSky
check_skystate(&skystate); // Give it a reference so it can read the varible skystate
check_skystate(&skystate); // Give it a reference so it can read the variable skystate
}
```

Loading…
Cancel
Save