From ea93c8dba42bb150f82f8a7eeadb3ddf08820b5e Mon Sep 17 00:00:00 2001 From: belliash Date: Fri, 22 Mar 2019 19:55:53 +0100 Subject: [PATCH] Fix typo. --- engine/builtin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/builtin.c b/engine/builtin.c index 1c6fc4c..1008081 100644 --- a/engine/builtin.c +++ b/engine/builtin.c @@ -290,7 +290,7 @@ static int PH7_builtin_round(ph7_context *pCtx, int nArg, ph7_value **apArg) { r = ph7_value_to_double(apArg[0]); /* If Y==0 and X will fit in a 64-bit int, * handle the rounding directly.Otherwise - * use our own cutsom printf [i.e:SyBufferFormat()]. + * use our own custom printf [i.e:SyBufferFormat()]. */ if(n == 0 && r >= 0 && r < LARGEST_INT64 - 1) { r = (double)((ph7_int64)(r + 0.5));