aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-11-23 19:27:24 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-11-23 19:27:32 +0300
commit88fc41ce5d1c1cb8876adea744a6e501ebbd1a11 (patch)
tree6ea0b085024acc9d4b7b0dc9e2b6284f85bc41ee
parentc6ea3d784ee920f51de3088437b471c8dd6d70e2 (diff)
Use term 'introducer' instead of 'introductor'
-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.
//