From b9673699b7595041be489a6f11f944634a240d19 Mon Sep 17 00:00:00 2001 From: Paco Yang Date: Wed, 28 Jun 2023 15:40:02 +0800 Subject: [PATCH] fix: typo in basics (#252) --- docs/basics/storing-values.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics/storing-values.md b/docs/basics/storing-values.md index 98378d3126..aa6cd4fd33 100644 --- a/docs/basics/storing-values.md +++ b/docs/basics/storing-values.md @@ -27,7 +27,7 @@ Substrate contracts may store types that are encodable and decodable with [Parity Codec](https://github.com/paritytech/parity-codec) which includes most Rust common data types such as `bool`, `u{8,16,32,64,128}`, `i{8,16,32,64,128}`, `String`, tuples, and arrays. -Futhermore, ink! provides [substrate](https://substrate.io/) specific types like `AccountId`, `Balance`, and `Hash` to smart contracts as if +Furthermore, ink! provides [substrate](https://substrate.io/) specific types like `AccountId`, `Balance`, and `Hash` to smart contracts as if they were primitive types. ### String, Vector and More