Update examples

This commit is contained in:
Ryan Kennedy 2020-03-15 19:46:42 -05:00
parent 9838cc7e70
commit a835eeee07
4 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ static PLANES: &[Plane] = &[Plane::Plane0, Plane::Plane1, Plane::Plane2, Plane::
/// Basic usage: /// Basic usage:
/// ///
/// ```no_run /// ```no_run
/// use vga::Graphics640x480x16; /// use vga::writers::Graphics640x480x16;
/// ///
/// let graphics_mode = Graphics640x480x16::new(); /// let graphics_mode = Graphics640x480x16::new();
/// ///

View file

@ -22,7 +22,7 @@ static BLANK_CHARACTER: ScreenCharacter = ScreenCharacter {
/// Basic usage: /// Basic usage:
/// ///
/// ```no_run /// ```no_run
/// use vga::Text40x25; /// use vga::writers::Text40x25;
/// ///
/// let text_mode = Text40x25::new(); /// let text_mode = Text40x25::new();
/// ///

View file

@ -22,7 +22,7 @@ static BLANK_CHARACTER: ScreenCharacter = ScreenCharacter {
/// Basic usage: /// Basic usage:
/// ///
/// ```no_run /// ```no_run
/// use vga::Text40x50; /// use vga::writers::Text40x50;
/// ///
/// let text_mode = Text40x50::new(); /// let text_mode = Text40x50::new();
/// ///

View file

@ -22,7 +22,7 @@ static BLANK_CHARACTER: ScreenCharacter = ScreenCharacter {
/// Basic usage: /// Basic usage:
/// ///
/// ```no_run /// ```no_run
/// use vga::Text80x25; /// use vga::writers::Text80x25;
/// ///
/// let text_mode = Text80x25::new(); /// let text_mode = Text80x25::new();
/// ///