summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/textual.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textual.cc b/src/textual.cc
index 82065f3c..f6cbf070 100644
--- a/src/textual.cc
+++ b/src/textual.cc
@@ -853,12 +853,12 @@ void instance_t::end_apply_directive(char * kind)
if (context.apply_stack.size() <= 1)
throw_(std::runtime_error,
- _("'end apply%1' found, but no enclosing 'apply%2' directive")
+ _("'end apply %1' found, but no enclosing 'apply %2' directive")
<< name << name);
if (name != " " && name != context.apply_stack.front().label)
throw_(std::runtime_error,
- _("'end apply%1' directive does not match 'apply %2' directive")
+ _("'end apply %1' directive does not match 'apply %2' directive")
<< name << context.apply_stack.front().label);
context.apply_stack.pop_front();