aboutsummaryrefslogtreecommitdiff
path: root/src/Inputs.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Inputs.cc')
-rw-r--r--src/Inputs.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Inputs.cc b/src/Inputs.cc
index de81aec..d71d8f7 100644
--- a/src/Inputs.cc
+++ b/src/Inputs.cc
@@ -5,7 +5,7 @@
#include <fstream>
Inputs::Inputs(std::string node_name){
- // Here we doing all the boring stuff
+ // Here we do all the boring stuff
FILE* input_file = fopen(INPUTS_FILE, "rb");
char input_file_buffer[JSON_BUFFER_SIZE];
rapidjson::FileReadStream is(input_file, input_file_buffer, sizeof(input_file_buffer));
@@ -64,7 +64,7 @@ void Inputs::MergeEvents(){
}
double Inputs::GetNextTS(){
- // Ensure the caller is smart
+ // Ensure that the caller is smart
if(wake_duration.size()<2){
std::cerr << "You are trying to access to the next timestamp but it does not exists" <<std::endl;
exit(1);
@@ -73,7 +73,7 @@ double Inputs::GetNextTS(){
}
double Inputs::GetNextDuration(){
- // Ensure the caller is smart
+ // Ensure that the caller is smart
if(wake_duration.size()<2){
std::cerr << "You are trying to access to the next duration but it does not exists" <<std::endl;
exit(1);