aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ast/SkSLASTFloatLiteral.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sksl/ast/SkSLASTFloatLiteral.h')
-rw-r--r--src/sksl/ast/SkSLASTFloatLiteral.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sksl/ast/SkSLASTFloatLiteral.h b/src/sksl/ast/SkSLASTFloatLiteral.h
index 15fe836049..ea0f595abc 100644
--- a/src/sksl/ast/SkSLASTFloatLiteral.h
+++ b/src/sksl/ast/SkSLASTFloatLiteral.h
@@ -4,7 +4,7 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-
+
#ifndef SKSL_ASTFLOATLITERAL
#define SKSL_ASTFLOATLITERAL
@@ -13,14 +13,14 @@
namespace SkSL {
/**
- * A literal floating point number.
+ * A literal floating point number.
*/
struct ASTFloatLiteral : public ASTExpression {
ASTFloatLiteral(Position position, double value)
: INHERITED(position, kFloat_Kind)
, fValue(value) {}
- String description() const override {
+ SkString description() const override {
return to_string(fValue);
}