From 0ed8f90f110e200dda21068ff48b9a9a44896b8c Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Mon, 16 Mar 2020 02:25:31 -0400 Subject: [PATCH] Fix some type signatures in Str docs --- compiler/builtins/docs/Str.roc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/builtins/docs/Str.roc b/compiler/builtins/docs/Str.roc index 092cdc053a..452f828991 100644 --- a/compiler/builtins/docs/Str.roc +++ b/compiler/builtins/docs/Str.roc @@ -66,10 +66,10 @@ Str : [ @Str ] ## but it's recommended to pass much smaller numbers instead. ## ## Passing a negative number for decimal places is equivalent to passing 0. -decimal : Int, Float -> Str +decimal : Float *, Int * -> Str ## Convert an #Int to a string. -int : Float -> Str +int : Int * -> Str ## Check