summaryrefslogtreecommitdiffstats
path: root/src/factory
diff options
context:
space:
mode:
authorKenji Hosokawa <khosokawa@jp.adit-jv.com>2020-10-23 13:04:49 +0900
committerKenji Hosokawa <khosokawa@jp.adit-jv.com>2020-10-23 13:04:49 +0900
commit4680fc4332d939d852592c86546f7bca148dace7 (patch)
treefa1d71082e85e1bbcc6ba3686dfd372311cc8885 /src/factory
parentc0ecf677d8ac6ad5cd12e97a294e075f3f8cb249 (diff)
Cosmetic changes to pass compilation
Signed-off-by: Kenji Hosokawa <khosokawa@jp.adit-jv.com>
Diffstat (limited to 'src/factory')
-rw-r--r--src/factory/RBAJsonElement.hpp2
-rw-r--r--src/factory/RBAJsonParserImpl.cpp4
-rw-r--r--src/factory/RBAJsonParserImpl.hpp4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/factory/RBAJsonElement.hpp b/src/factory/RBAJsonElement.hpp
index a5fcc8e..e317ef2 100644
--- a/src/factory/RBAJsonElement.hpp
+++ b/src/factory/RBAJsonElement.hpp
@@ -35,7 +35,7 @@ enum class RBAContentLoserType : std::uint8_t;
enum class RBAExpressionType : std::uint8_t;
#endif
-/// @brief JSONエ Element class
+/// @brief JSON Element class
class DLL_EXPORT RBAJsonElement
{
public:
diff --git a/src/factory/RBAJsonParserImpl.cpp b/src/factory/RBAJsonParserImpl.cpp
index db65367..a883609 100644
--- a/src/factory/RBAJsonParserImpl.cpp
+++ b/src/factory/RBAJsonParserImpl.cpp
@@ -80,7 +80,7 @@ parse(const std::string& filename)
return nullptr;
}
- // Create map between Area and Costraint
+ // Create map between Area and Costraint
createConstraintMap(root->findChildren("area_constraint_map"),
RBAConstraintMap::CONTENT_ALLOCATE_CONSTRAINTS);
createConstraintMap(root->findChildren("area_hidden_true_check_constraint_map"),
@@ -88,7 +88,7 @@ parse(const std::string& filename)
createConstraintMap(root->findChildren("area_hidden_false_check_constraint_map"),
RBAConstraintMap::HIDDEN_FALSE_CHECK_CONSTRAINTS);
- // Create map between Zone and Costraint
+ // Create map between Zone and Costraint
createConstraintMap(root->findChildren("zone_constraint_map"),
RBAConstraintMap::CONTENT_ALLOCATE_CONSTRAINTS);
createConstraintMap(root->findChildren("zone_mute_true_check_constraint_map"),
diff --git a/src/factory/RBAJsonParserImpl.hpp b/src/factory/RBAJsonParserImpl.hpp
index 533f894..4744571 100644
--- a/src/factory/RBAJsonParserImpl.hpp
+++ b/src/factory/RBAJsonParserImpl.hpp
@@ -15,7 +15,7 @@
*/
/// @file RBAJsonParserImpl.hpp
-/// @brief JSON Parser implementation class header file
+/// @brief JSON Parser implementation class header file
#ifndef RBAJSONPARSERIMPL_HPP
#define RBAJSONPARSERIMPL_HPP
@@ -30,7 +30,7 @@ namespace rba
class RBAJsonElement;
enum class RBAConstraintMap : std::uint8_t;
-/// @brief JSON Parser implementation class
+/// @brief JSON Parser implementation class
class RBAJsonParser::Impl
{
public: