From cdf0daaca992d0a6162fd237357596fc7b47223e Mon Sep 17 00:00:00 2001 From: max-crawford <102705427+max-crawford@users.noreply.github.com> Date: Thu, 16 Jan 2025 19:25:52 -0800 Subject: [PATCH] Update string-to-uint.mdx --- content/docs/stacks/clarity/functions/string-to-uint.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/stacks/clarity/functions/string-to-uint.mdx b/content/docs/stacks/clarity/functions/string-to-uint.mdx index fd7e0f5b..b4ad00c6 100644 --- a/content/docs/stacks/clarity/functions/string-to-uint.mdx +++ b/content/docs/stacks/clarity/functions/string-to-uint.mdx @@ -1,6 +1,6 @@ --- title: string-to-uint? -description: Converting a string to an optional unsigned integer in Clarity smart contracts. +description: Convert a string to an optional unsigned integer in Clarity smart contracts. --- ## Function Signature @@ -72,4 +72,4 @@ This example demonstrates: ## Conclusion -The `string-to-uint?` function is a fundamental tool for converting string representations of numbers to unsigned integers in Clarity smart contracts. It allows developers to implement logic that requires numeric values from string inputs, ensuring data integrity and simplifying numeric conversions. When used effectively, `string-to-uint?` enhances the reliability and maintainability of your smart contract code by providing a clear and concise way to handle string-to-unsigned-integer conversions. +The `string-to-uint?` function is a fundamental tool for converting string representations of numbers to unsigned integers in Clarity smart contracts. It allows you to implement logic that requires numeric values from string inputs, ensuring data integrity and simplifying numeric conversions. When used effectively, `string-to-uint?` enhances the reliability and maintainability of your smart contract code by providing a clear and concise way to handle string-to-unsigned-integer conversions.