Merge pull request #563 from bvssvni/remove_dot

Removed dot in error message
This commit is contained in:
tomaka
2015-08-05 12:43:52 +02:00

View File

@@ -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"
}
}
}