Really don't run these doc tests

This commit is contained in:
Joonas Javanainen 2018-08-14 01:01:07 +03:00
parent 1fd0aeeae6
commit 1213feb800
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179

View File

@ -4,7 +4,7 @@
//!
//! In your initialization code call `configure_keys`:
//!
//! ```rust, no_run
//! ```rust,no_run
//! # extern crate imgui;
//! # extern crate imgui_glutin_support;
//! use imgui::ImGui;
@ -18,7 +18,7 @@
//! In your main loop you should already be retrieving events from glutin and handling them. All
//! you need to do is pass each event to `imgui_glutin_support` as well:
//!
//! ```rust, no_run
//! ```rust,no_run
//! # extern crate glutin;
//! # extern crate imgui;
//! # extern crate imgui_glutin_support;
@ -42,7 +42,7 @@
//!
//! For example, you might want to customize mouse wheel line scrolling amount:
//!
//! ```rust, no_run
//! ```rust,no_run
//! # extern crate glutin;
//! # extern crate imgui;
//! # extern crate imgui_glutin_support;