From 6d66b4b09a3fa7a2a94a49c6f408410476c8d899 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Thu, 30 Nov 2023 10:08:02 +0100 Subject: [PATCH] fixup: Accidentally a word --- documentation/public/user-guide/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/public/user-guide/introduction.md b/documentation/public/user-guide/introduction.md index 16d243974a..acaf7ba4f2 100644 --- a/documentation/public/user-guide/introduction.md +++ b/documentation/public/user-guide/introduction.md @@ -12,7 +12,7 @@ The Solidity programming language has evolved quite a bit since its inception. S While it's good for a programming language to evolve and better serve the needs of its users, not being able to easily upgrade or re-deploy existing contracts poses a unique challenge. Developer tooling must be able to understand and consume older contracts that are still being used on the blockchain, written in older versions of Solidity. -Because of that, Slang must be able to reason about different versions of Solidity; how the language grammar, name binding rules, and semantics have across different versions. One of our goals is to document differences as part of our [Solidity Specification](../solidity-specification/index.md). +Because of that, Slang must be able to reason about different versions of Solidity; how the language grammar, name binding rules, and semantics have changed across different versions. One of our goals is to document differences as part of our [Solidity Specification](../solidity-specification/index.md). This is why, instead of having to download separate versions of the tool for each Solidity version, you can access the Slang language APIs by simply specifying the Solidity version that you want to work with. See [language-specific guides](../#distributions) for more examples.