Skip to content

Commit

Permalink
fix two typos
Browse files Browse the repository at this point in the history
  • Loading branch information
asdetrefle committed Apr 14, 2020
1 parent 559e3d6 commit 07bb8e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion test/parse_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ TEST(toml_test, parse_example)
val.at(2)->value_or(0));
})
.value(),
(std::pair{8001, 8001}));
(std::pair{8001, 8002}));
}

TEST(toml_test, parse_array)
Expand Down
18 changes: 9 additions & 9 deletions tominal/toml.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ class parse_result;
TOML_NAMESPACE_END
} // namespace toml

#include "toml/toml_base.h"
#include "toml/toml_date_time.h"
#include "toml/toml_node.h"
#include "toml/toml_value.h"
#include "toml/toml_array.h"
#include "toml/toml_table.h"
#include "toml/toml_node_view.h"
#include "toml/toml_parser.h"
#include "toml/toml_writer.h"
#include "toml_base.h"
#include "toml_date_time.h"
#include "toml_node.h"
#include "toml_value.h"
#include "toml_array.h"
#include "toml_table.h"
#include "toml_node_view.h"
#include "toml_parser.h"
#include "toml_writer.h"

0 comments on commit 07bb8e3

Please sign in to comment.