From 0b2abcccc0480a2be448e962ee011658f8d07a3c Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Tue, 16 May 2023 19:10:50 -0500 Subject: [PATCH] Typo --- docs/guide/important-concepts/features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/important-concepts/features.md b/docs/guide/important-concepts/features.md index 7aed9c30..7b734856 100644 --- a/docs/guide/important-concepts/features.md +++ b/docs/guide/important-concepts/features.md @@ -30,6 +30,6 @@ const numUpgrades = computed(() => Object.values(upgrades).length); ## Tree Shaking -Since Profectus takes advantage of [tree shaking](https://developer.mozilla.org/en-US/docs/Glossary/Tree_shaking), and type of feature that is not used will not be included in the output of the project. That means users have less code to download, a slight performance boost, and you don't need to worry about feature type-specific settings appearing (such as whether to show maxed challenges). +Since Profectus takes advantage of [tree shaking](https://developer.mozilla.org/en-US/docs/Glossary/Tree_shaking), any type of feature that is not used will not be included in the output of the project. That means users have less code to download, a slight performance boost, and you don't need to worry about feature type-specific settings appearing (such as whether to show maxed challenges). It should be noted that a couple features depend on each other, such as Buyables depending on Clickables. That means you may see features included in the output despite not directly using them. Some features, such as Links and Tooltips, are used by the engine itself and will always be included in the output.