aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSven Nilsen <bvssvni@gmail.com>2015-08-05 12:10:38 +0200
committerSven Nilsen <bvssvni@gmail.com>2015-08-05 12:10:38 +0200
commitce13975f15d56a922b9a83d6510d2d8bfccb7807 (patch)
tree4949949d9e66b15ef9a48358948e30f92ac3e2e9 /src/lib.rs
parentdff7612e4547aa3ef0acdb83b0cb05e5e865800e (diff)
downloadglutin-ce13975f15d56a922b9a83d6510d2d8bfccb7807.tar.gz
glutin-ce13975f15d56a922b9a83d6510d2d8bfccb7807.zip
Removed dot in error message
Closes https://github.com/tomaka/glutin/issues/562
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 802fcf9..49b8d9a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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"
}
}
}