From 55a079a7c4053649fc585a52d697533805f23467 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Sun, 23 Oct 2011 22:46:55 +0200 Subject: [PATCH] Clarify Token::concatStr() documentation --- lib/token.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/token.h b/lib/token.h index 6927d7dec..37d8a3979 100644 --- a/lib/token.h +++ b/lib/token.h @@ -49,8 +49,8 @@ public: void str(const std::string &s); /** - * Concatenate two strings. "hello" "world" -> "hello world" - * Note: Automatically cuts of the last/first character. + * Concatenate two (quoted) strings. Automatically cuts of the last/first character. + * Example: "hello ""world" -> "hello world". Used by the token simplifier. */ void concatStr(std::string const& b);