From ff534a17fd64c2be3c0b795477789be780c6890b Mon Sep 17 00:00:00 2001 From: billythedummy Date: Mon, 11 Dec 2023 12:54:27 +0800 Subject: [PATCH] README --- CHANGELOG.md | 6 ++++++ README.md | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 881322a..4c2c890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [UNRELEASED] + +### Fixes + +- Documentation for `KeyedAccount` in README + ## [1.0.0] - 2023-12-11 Initial release diff --git a/README.md b/README.md index e4eb917..f7c6c7c 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Since [solana_sdk::Account](https://docs.rs/solana-sdk/latest/solana_sdk/account ```rust ignore pub struct KeyedAccount { - pub key: Pubkey, + pub pubkey: Pubkey, pub account: Account, } ```