aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-05-19 10:41:17 -0400
committerYour Name <you@example.com>2021-05-19 10:41:17 -0400
commit1b9b15e5fe8b53dfde9549c647fd7fd917a2c958 (patch)
treea2ac7607afc81da2934fb3f1e9c291c59f58ac75
parent182ee7816d5bcf794be1f44c6e9224b51567334c (diff)
downloadlibbible-1b9b15e5fe8b53dfde9549c647fd7fd917a2c958.tar.gz
libbible-1b9b15e5fe8b53dfde9549c647fd7fd917a2c958.tar.bz2
libbible-1b9b15e5fe8b53dfde9549c647fd7fd917a2c958.zip
Removed newline before printing
-rw-r--r--bible.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bible.cc b/bible.cc
index 87f6659..d50d7e9 100644
--- a/bible.cc
+++ b/bible.cc
@@ -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;