Skip to content

Commit

Permalink
Merge pull request #1484 from passy/patch-1
Browse files Browse the repository at this point in the history
Fix typo in tuto-01
  • Loading branch information
tomaka committed Jun 8, 2016
2 parents 3fadf16 + 037d693 commit 11a6b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/tuto-01-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ This is represented in glium by the `Frame` object. When you want to start drawi
let mut target = display.draw();
```

We can then use this `target` as a drawing surface. One of the operation that OpenGL and glium provide is filling the surface with a given color. This is what we are going to do.
We can then use this `target` as a drawing surface. One of the operations that OpenGL and glium provide is filling the surface with a given color. This is what we are going to do.

```rust
target.clear_color(0.0, 0.0, 1.0, 1.0);
Expand Down

0 comments on commit 11a6b7b

Please sign in to comment.