From 14f031aead619ce8a3fff1c283c3d205d421cd1f Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 17 Jan 2021 12:51:10 +0200 Subject: [PATCH] Minor style/typo fixes --- source/loader.h | 2 +- source/statement.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/loader.h b/source/loader.h index fe8f0aa..cf2b545 100644 --- a/source/loader.h +++ b/source/loader.h @@ -192,7 +192,7 @@ void load(T &obj, const std::string &fn, Args &... args) } /** -Loads an object from a file stored in a collection. The object must havea +Loads an object from a file stored in a collection. The object must have a public Loader class. The collection is passed to the Loader constructor, followed by any extra arguments. */ diff --git a/source/statement.cpp b/source/statement.cpp index 125c1d5..6d1c3b1 100644 --- a/source/statement.cpp +++ b/source/statement.cpp @@ -32,7 +32,7 @@ string Statement::get_location() const string Statement::get_signature() const { string result; - for(Arguments::const_iterator i = args.begin(); i!=args.end(); ++i) + for(Arguments::const_iterator i=args.begin(); i!=args.end(); ++i) result += i->get_signature(); return result; } -- 2.43.0