@@ -59,7 +59,7 @@ def amalgamate_source(source_top_dir=None,
59
59
print ("Amalgating header..." )
60
60
header = AmalgamationFile (source_top_dir )
61
61
header .add_text ("/// Json-cpp amalgated header (http://jsoncpp.sourceforge.net/)." )
62
- header .add_text ('/// It is intented to be used with #include "%s"' % header_include_path )
62
+ header .add_text ('/// It is intended to be used with #include "%s"' % header_include_path )
63
63
header .add_file ("LICENSE" , wrap_in_comment = True )
64
64
header .add_text ("#ifndef JSON_AMALGATED_H_INCLUDED" )
65
65
header .add_text ("# define JSON_AMALGATED_H_INCLUDED" )
@@ -85,7 +85,7 @@ def amalgamate_source(source_top_dir=None,
85
85
print ("Amalgating forward header..." )
86
86
header = AmalgamationFile (source_top_dir )
87
87
header .add_text ("/// Json-cpp amalgated forward header (http://jsoncpp.sourceforge.net/)." )
88
- header .add_text ('/// It is intented to be used with #include "%s"' % forward_header_include_path )
88
+ header .add_text ('/// It is intended to be used with #include "%s"' % forward_header_include_path )
89
89
header .add_text ("/// This header provides forward declaration for all JsonCpp types." )
90
90
header .add_file ("LICENSE" , wrap_in_comment = True )
91
91
header .add_text ("#ifndef JSON_FORWARD_AMALGATED_H_INCLUDED" )
@@ -105,7 +105,7 @@ def amalgamate_source(source_top_dir=None,
105
105
print ("Amalgating source..." )
106
106
source = AmalgamationFile (source_top_dir )
107
107
source .add_text ("/// Json-cpp amalgated source (http://jsoncpp.sourceforge.net/)." )
108
- source .add_text ('/// It is intented to be used with #include "%s"' % header_include_path )
108
+ source .add_text ('/// It is intended to be used with #include "%s"' % header_include_path )
109
109
source .add_file ("LICENSE" , wrap_in_comment = True )
110
110
source .add_text ("" )
111
111
source .add_text ('#include "%s"' % header_include_path )
0 commit comments