diff options
author | Your Name <you@example.com> | 2020-11-21 14:33:33 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2020-11-21 14:33:33 -0500 |
commit | 51734065a38cf6db48fe9fb4b16461ce424cad90 (patch) | |
tree | 9abea3db7c02d7eb957256062f8a71d6a7672e35 /bible.cc | |
parent | dcfac3432f981191da68f14f21f5010fc4da51c0 (diff) | |
download | libbible-51734065a38cf6db48fe9fb4b16461ce424cad90.tar.gz libbible-51734065a38cf6db48fe9fb4b16461ce424cad90.tar.bz2 libbible-51734065a38cf6db48fe9fb4b16461ce424cad90.zip |
Updated API to be more explicit with references
Diffstat (limited to 'bible.cc')
-rw-r--r-- | bible.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -181,7 +181,7 @@ int main(int argc, char* argv[]) { return 0; } - auto text = libbible::getText(libbible::passage{.modName = modname, .reference = reference}); + auto text = libbible::getText(libbible::getPassage(modname, reference)); int chapter = 0; int verse = 0; const char* indent = " "; |