diff options
author | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-08-02 11:07:29 +0200 |
---|---|---|
committer | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-08-02 11:07:29 +0200 |
commit | dbaef704ad2d3a55b173a486ffd553ebb46b1283 (patch) | |
tree | a81b9d3eb7d1da3f189fd49382c9628315aea911 | |
parent | bfc5d3e63d0d2a511cfbbf08895be4a7031a248f (diff) | |
download | glutin-dbaef704ad2d3a55b173a486ffd553ebb46b1283.tar.gz glutin-dbaef704ad2d3a55b173a486ffd553ebb46b1283.zip |
Fix docs for Window
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -92,8 +92,7 @@ impl WindowBuilder { /// unsafe { window.make_current() }; /// /// loop { -/// for event in window.poll_events().move_iter() { // note: this may change in the future -/// match event { +/// for event in window.poll_events() { /// // process events here /// _ => () /// } |