Removed dot in error message

Closes https://github.com/tomaka/glutin/issues/562
This commit is contained in:
Sven Nilsen 2015-08-05 12:10:38 +02:00
parent dff7612e45
commit ce13975f15

View file

@ -155,7 +155,7 @@ impl ContextError {
use std::error::Error; use std::error::Error;
match *self { match *self {
ContextError::IoError(ref err) => err.description(), ContextError::IoError(ref err) => err.description(),
ContextError::ContextLost => "Context lost." ContextError::ContextLost => "Context lost"
} }
} }
} }