aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbutl/manifest-parser.cxx6
-rw-r--r--libbutl/manifest-serializer.cxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/libbutl/manifest-parser.cxx b/libbutl/manifest-parser.cxx
index c208eb1..0a11f7c 100644
--- a/libbutl/manifest-parser.cxx
+++ b/libbutl/manifest-parser.cxx
@@ -222,7 +222,7 @@ namespace butl
string& v (r.value);
string::size_type n (0); // Size of last non-space character (simple mode).
- // Detect the multi-line mode introductor.
+ // Detect the multi-line mode introducer.
//
bool ml (false);
if (c == '\\')
@@ -252,7 +252,7 @@ namespace butl
// The nl flag signals that the preceding character was a "special
// newline", that is, a newline that was part of the milti-line mode
- // introductor or an escape sequence.
+ // introducer or an escape sequence.
//
for (bool nl (ml); !eos (c); c = peek ())
{
@@ -270,7 +270,7 @@ namespace butl
//
// The first block handles the special sequence that starts with
// a special newline. In multi-line mode, this is an "immediate
- // termination" where we "use" the newline from the introductor.
+ // termination" where we "use" the newline from the introducer.
// Note also that in the simple mode the special sequence can
// only start with a special (i.e., escaped) newline.
//
diff --git a/libbutl/manifest-serializer.cxx b/libbutl/manifest-serializer.cxx
index 05cdae5..8f248cf 100644
--- a/libbutl/manifest-serializer.cxx
+++ b/libbutl/manifest-serializer.cxx
@@ -294,7 +294,7 @@ namespace butl
v.front () == ' ' || v.front () == '\t' ||
v.back () == ' ' || v.back () == '\t')
{
- os_ << "\\" << endl; // Multi-line mode introductor.
+ os_ << "\\" << endl; // Multi-line mode introducer.
// Chunk the value into fragments separated by newlines.
//