]> git.tdb.fi Git - libs/datafile.git/commitdiff
Minor style/typo fixes
authorMikko Rasa <tdb@tdb.fi>
Sun, 17 Jan 2021 10:51:10 +0000 (12:51 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sun, 17 Jan 2021 10:51:37 +0000 (12:51 +0200)
source/loader.h
source/statement.cpp

index fe8f0aa54f7621939b1bc2cba946f0f10ca58d0d..cf2b5454b907a038e66745a7ecd7fadf239dcf56 100644 (file)
@@ -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.
 */
index 125c1d5ab5403af6fd2b1d96cd2108000559bc4f..6d1c3b1f22767b5eba0d6cca5bb52b0ef0651794 100644 (file)
@@ -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;
 }