summaryrefslogtreecommitdiffstats
path: root/src/utils/record_file.h
diff options
context:
space:
mode:
authorPeter Colberg <peter@colberg.org>2015-12-30 16:53:42 -0500
committerPeter Colberg <peter@colberg.org>2015-12-30 16:53:42 -0500
commit2af8b4b6b3b09ae4f73d3d38204619f1486d8a89 (patch)
tree24e30dbc39c023799c4ab00faa6a6e9ee84ba8e5 /src/utils/record_file.h
parenta363dde8b5fb7133c0ea06001e4a9e4a7fd7ac78 (diff)
downloadtwinkle-2af8b4b6b3b09ae4f73d3d38204619f1486d8a89.tar
twinkle-2af8b4b6b3b09ae4f73d3d38204619f1486d8a89.tar.gz
twinkle-2af8b4b6b3b09ae4f73d3d38204619f1486d8a89.tar.lz
twinkle-2af8b4b6b3b09ae4f73d3d38204619f1486d8a89.tar.xz
twinkle-2af8b4b6b3b09ae4f73d3d38204619f1486d8a89.zip
Fix spelling
Diffstat (limited to 'src/utils/record_file.h')
-rw-r--r--src/utils/record_file.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/record_file.h b/src/utils/record_file.h
index 6108ea0..c3fb6de 100644
--- a/src/utils/record_file.h
+++ b/src/utils/record_file.h
@@ -49,7 +49,7 @@ public:
/**
* Create a record to write to a file.
* @param v [out] Vector of fields of record.
- * @return true, if record is succesfully created.
+ * @return true, if record is successfully created.
* @return false, otherwise.
*/
virtual bool create_file_record(vector<string> &v) const = 0;
@@ -57,7 +57,7 @@ public:
/**
* Populate from a file record.
* @param v [in] Vector containing the fields of the record.
- * @return true, if record is succesfully populated.
+ * @return true, if record is successfully populated.
* @return false, if file record could not be parsed.
*/
virtual bool populate_from_file_record(const vector<string> &v) = 0;
@@ -132,7 +132,7 @@ public:
/**
* Load records from file.
* @param error_msg [out] Error message on failure return.
- * @return true, if file was read succesfully.
+ * @return true, if file was read successfully.
* @return false, if it fails. error_msg is an error to be given to
* the user.
*/
@@ -141,7 +141,7 @@ public:
/**
* Save records to file.
* @param error_msg [out] Error message on failure return.
- * @return true, if file was saved succesfully.
+ * @return true, if file was saved successfully.
* @return false, if it fails. error_msg is an error to be given to
* the user.
*/