From 1507477306ec482aee52de18b58b32c9abc9b8a7 Mon Sep 17 00:00:00 2001 From: Yang Li Date: Sun, 18 Jul 2021 17:33:00 +0800 Subject: [PATCH] correct typo --- docs/src/developing/on-chain-programs/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/developing/on-chain-programs/overview.md b/docs/src/developing/on-chain-programs/overview.md index b24f953d65..aaa9720cf2 100644 --- a/docs/src/developing/on-chain-programs/overview.md +++ b/docs/src/developing/on-chain-programs/overview.md @@ -94,7 +94,7 @@ attempts to use a float operation that is not supported, the runtime will report an unresolved symbol error. Float operations are performed via software libraries, specifically LLVM's float -builtins. Due to be software emulated they consume more compute units than +builtins. Due to the software emulated they consume more compute units than integer operations. In general, fixed point operations are recommended where possible.