提交 71f2871f 编写于 作者: A Adam Barth 提交者: GitHub

lerpDouble return value should be "double" (#3068)

Fixes https://github.com/flutter/flutter/issues/5783
上级 30d87519
......@@ -5,7 +5,7 @@
part of dart_ui;
/// Linearly interpolate between two numbers.
num lerpDouble(num a, num b, double t) {
double lerpDouble(num a, num b, double t) {
if (a == null && b == null)
return null;
if (a == null)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册