Clarify Token::concatStr() documentation

This commit is contained in:
Thomas Jarosch 2011-10-23 22:46:55 +02:00
parent e63adfaaf8
commit 55a079a7c4
1 changed files with 2 additions and 2 deletions

View File

@ -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);