Fix unfortunate typo

This commit is contained in:
Saagar Jha 2018-06-02 22:05:44 -07:00 committed by Axel Naumann
parent cbaac95d07
commit 68c93f9743

View File

@ -71,7 +71,7 @@ namespace textinput {
Text& operator+=(char C) { insert(length(), C); return *this; }
Text& operator=(const std::string& S) {
// Assing string S to this, initialize with default colors.
// Assign string S to this, initialize with default colors.
fColor.clear();
fColor.resize(S.length());
fString = S;