sdk: fix typo in lib.rs (#24240)

recieved -> received
This commit is contained in:
Ikko Ashimine 2022-04-11 23:36:08 +09:00 committed by GitHub
parent 8eef3d9713
commit ecfa1964ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.
//!