mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Rename Float to Frac in more places
This commit is contained in:
parent
0f89d4c3a5
commit
dc7e8b43bd
9 changed files with 49 additions and 49 deletions
|
@ -1485,7 +1485,7 @@ pub mod dbg_deep {
|
|||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
match self.1 {
|
||||
Builtin::Int(w) => f.debug_tuple("Int").field(&w).finish(),
|
||||
Builtin::Float(w) => f.debug_tuple("Float").field(&w).finish(),
|
||||
Builtin::Float(w) => f.debug_tuple("Frac").field(&w).finish(),
|
||||
Builtin::Bool => f.debug_tuple("Bool").finish(),
|
||||
Builtin::Decimal => f.debug_tuple("Decimal").finish(),
|
||||
Builtin::Str => f.debug_tuple("Str").finish(),
|
||||
|
@ -1664,7 +1664,7 @@ pub mod dbg_stable {
|
|||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
match self.1 {
|
||||
Builtin::Int(w) => f.debug_tuple("Int").field(&w).finish(),
|
||||
Builtin::Float(w) => f.debug_tuple("Float").field(&w).finish(),
|
||||
Builtin::Float(w) => f.debug_tuple("Frac").field(&w).finish(),
|
||||
Builtin::Bool => f.debug_tuple("Bool").finish(),
|
||||
Builtin::Decimal => f.debug_tuple("Decimal").finish(),
|
||||
Builtin::Str => f.debug_tuple("Str").finish(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue