Browse Source

Merge pull request #18239 from vnen/variant-op-names

Fix names of Variant operators
Rémi Verschelde 7 years ago
parent
commit
e9ad3fada1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      core/variant_op.cpp

+ 2 - 1
core/variant_op.cpp

@@ -3728,8 +3728,9 @@ static const char *_op_names[Variant::OP_MAX] = {
 	"*",
 	"/",
 	"- (negation)",
+	"+ (positive)",
 	"%",
-	"..",
+	"+ (concatenation)",
 	"<<",
 	">>",
 	"&",