diff options
author | Sven Nilsen <bvssvni@gmail.com> | 2015-08-05 12:10:38 +0200 |
---|---|---|
committer | Sven Nilsen <bvssvni@gmail.com> | 2015-08-05 12:10:38 +0200 |
commit | ce13975f15d56a922b9a83d6510d2d8bfccb7807 (patch) | |
tree | 4949949d9e66b15ef9a48358948e30f92ac3e2e9 /src | |
parent | dff7612e4547aa3ef0acdb83b0cb05e5e865800e (diff) | |
download | glutin-ce13975f15d56a922b9a83d6510d2d8bfccb7807.tar.gz glutin-ce13975f15d56a922b9a83d6510d2d8bfccb7807.zip |
Removed dot in error message
Closes https://github.com/tomaka/glutin/issues/562
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ impl ContextError { use std::error::Error; match *self { ContextError::IoError(ref err) => err.description(), - ContextError::ContextLost => "Context lost." + ContextError::ContextLost => "Context lost" } } } |