diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-10 19:36:14 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-10 19:36:14 -0500 |
commit | 713dca2fd8c13e9d417adc7f56ea3b2b54e6d54e (patch) | |
tree | 06480f2d8094f99cb1ff1e73f68a07d75f011028 /db/mork/src/morkStream.cpp | |
parent | 9ae2525b9a5a9ea59055a688706daa0b88e62acc (diff) | |
download | UXP-713dca2fd8c13e9d417adc7f56ea3b2b54e6d54e.tar UXP-713dca2fd8c13e9d417adc7f56ea3b2b54e6d54e.tar.gz UXP-713dca2fd8c13e9d417adc7f56ea3b2b54e6d54e.tar.lz UXP-713dca2fd8c13e9d417adc7f56ea3b2b54e6d54e.tar.xz UXP-713dca2fd8c13e9d417adc7f56ea3b2b54e6d54e.zip |
Bug 1399756 - (More) Code clean-up: Style nits, typos and trailing spaces
Tag #1273
Diffstat (limited to 'db/mork/src/morkStream.cpp')
-rw-r--r-- | db/mork/src/morkStream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/mork/src/morkStream.cpp b/db/mork/src/morkStream.cpp index 26c6f443e..64cd1011e 100644 --- a/db/mork/src/morkStream.cpp +++ b/db/mork/src/morkStream.cpp @@ -410,10 +410,10 @@ void morkStream::NewNullStreamBufferError(morkEnv* ev) const { ev->NewError("null stream buffer"); } void morkStream::NewCantReadSinkError(morkEnv* ev) const -{ ev->NewError("cant read stream sink"); } +{ ev->NewError("can not read stream sink"); } void morkStream::NewCantWriteSourceError(morkEnv* ev) const -{ ev->NewError("cant write stream source"); } +{ ev->NewError("can not write stream source"); } void morkStream::NewPosBeyondEofError(morkEnv* ev) const { ev->NewError("stream pos beyond eof"); } |