diff options
author | Your Name <you@example.com> | 2021-05-19 10:41:17 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-19 10:41:17 -0400 |
commit | 1b9b15e5fe8b53dfde9549c647fd7fd917a2c958 (patch) | |
tree | a2ac7607afc81da2934fb3f1e9c291c59f58ac75 | |
parent | 182ee7816d5bcf794be1f44c6e9224b51567334c (diff) | |
download | libbible-1b9b15e5fe8b53dfde9549c647fd7fd917a2c958.tar.gz libbible-1b9b15e5fe8b53dfde9549c647fd7fd917a2c958.tar.bz2 libbible-1b9b15e5fe8b53dfde9549c647fd7fd917a2c958.zip |
Removed newline before printing
-rw-r--r-- | bible.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -238,7 +238,7 @@ int main(int argc, char* argv[]) { stringstream out; for(auto tex : text) { if(!omitVerseNums && tex.chapter != chapter) { - out << "\n" << tex.book << " Chapter " << tex.chapter << ":\n"; + out << tex.book << " Chapter " << tex.chapter << ":\n"; } bool isParagraph = false; bool isIndent = false; |