From 9b35de654aa890822fa9d12b63e0b3560eaf5f05 Mon Sep 17 00:00:00 2001 From: Jessie Mongeon <133128541+jessiemongeon1@users.noreply.github.com> Date: Wed, 14 Aug 2024 17:11:24 -0500 Subject: [PATCH] Update 8-optimizing.mdx --- docs/developer-docs/backend/rust/8-optimizing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-docs/backend/rust/8-optimizing.mdx b/docs/developer-docs/backend/rust/8-optimizing.mdx index d433550680..45150e6a44 100644 --- a/docs/developer-docs/backend/rust/8-optimizing.mdx +++ b/docs/developer-docs/backend/rust/8-optimizing.mdx @@ -10,7 +10,7 @@ import { MarkdownChipRow } from "/src/components/Chip/MarkdownChipRow"; ## Overview -Compiling Rust to Wasm often increases the file size significantly. dfx versions 0.14.0 and newer include a the `wasm-opt` optimization package that can be used to optimize cycle consumption and binary size. +Compiling Rust to Wasm often increases the file size significantly. dfx versions 0.14.0 and newer include the `wasm-opt` package that can be used to optimize cycle consumption and binary size. ## Prerequisites