From ed0b81ccad562e8a1851f07836846e45285a7917 Mon Sep 17 00:00:00 2001 From: VictorLyl <88823403+VictorLyl@users.noreply.github.com> Date: Thu, 31 Mar 2022 14:18:19 +0800 Subject: [PATCH] Update types.rst correct --- types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.rst b/types.rst index a6766a5..c9d8d07 100644 --- a/types.rst +++ b/types.rst @@ -75,7 +75,7 @@ Solidity 提供了几种基本类型,可以用来组合出复杂类型。 ---------- .. warning:: - Solidity 还没有完全支持定长浮点型。可以声明定长浮点型的变量,但不能给它们赋值或把它们赋值给其他变量。。 + Solidity 还没有完全支持定长浮点型。可以声明定长浮点型的变量,但不能给它们赋值或把它们赋值给其他变量。 ``fixed`` / ``ufixed``:表示各种大小的有符号和无符号的定长浮点型。 在关键字 ``ufixedMxN`` 和 ``fixedMxN`` 中,``M`` 表示该类型占用的位数,``N`` 表示可用的小数位数。