From ecfa1964ffc2d4832ee1704633e75d9872ec1927 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Mon, 11 Apr 2022 23:36:08 +0900 Subject: [PATCH] sdk: fix typo in lib.rs (#24240) recieved -> received --- sdk/program/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/program/src/lib.rs b/sdk/program/src/lib.rs index 8c8c87ea76..fb4c458fc1 100644 --- a/sdk/program/src/lib.rs +++ b/sdk/program/src/lib.rs @@ -195,7 +195,7 @@ //! In user-written Solana program code, serialization is primarily used for //! accessing [`AccountInfo`] data and [`Instruction`] data, both of which are //! program-specific binary data. Every program is free to decide their own -//! serialization format, but data recieved from other sources — +//! serialization format, but data received from other sources — //! [sysvars][sysvar] for example — must be deserialized using the methods //! indicated by the documentation for that data or data type. //!