summaryrefslogtreecommitdiff
path: root/src/command_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/command_manager.cc')
-rw-r--r--src/command_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command_manager.cc b/src/command_manager.cc
index 562744d1..267dc44e 100644
--- a/src/command_manager.cc
+++ b/src/command_manager.cc
@@ -80,8 +80,8 @@ bool is_horizontal_blank(char c)
struct unterminated_string : parse_error
{
unterminated_string(const String& open, const String& close, int nest = 0)
- : parse_error{"unterminated string '" + open + "..." + close + "'" +
- (nest > 0 ? "(nesting: " + int_to_str(nest) + ")" : "")}
+ : parse_error{"unterminated string '" + open + "..." + close + "'" +
+ (nest > 0 ? "(nesting: " + int_to_str(nest) + ")" : "")}
{}
};