From f287ba048a237bd7207b17a833d1b19434378a12 Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Mon, 13 Aug 2018 23:51:29 +0300 Subject: [PATCH] Don't run new doc tests --- imgui-glutin-support/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/imgui-glutin-support/src/lib.rs b/imgui-glutin-support/src/lib.rs index 1756755..71929e0 100644 --- a/imgui-glutin-support/src/lib.rs +++ b/imgui-glutin-support/src/lib.rs @@ -4,7 +4,7 @@ //! //! In your initialization code call `configure_keys`: //! -//! ``` +//! ```rust, no_run //! # extern crate imgui; //! # extern crate imgui_glutin_support; //! use imgui::ImGui; @@ -16,7 +16,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 //! # extern crate glutin; //! # extern crate imgui; //! # extern crate imgui_glutin_support; @@ -38,7 +38,7 @@ //! //! For example, you might want to customize mouse wheel line scrolling amount: //! -//! ``` +//! ```rust, no_run //! # extern crate glutin; //! # extern crate imgui; //! # extern crate imgui_glutin_support;