From bb50259956168289804352fd1218ef7a3798abf7 Mon Sep 17 00:00:00 2001 From: Jerry Date: Tue, 15 Feb 2022 20:47:19 +0100 Subject: [PATCH] Typo fix (#23152) Fixed a type in the documentation. --- docs/src/developing/on-chain-programs/developing-c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/developing/on-chain-programs/developing-c.md b/docs/src/developing/on-chain-programs/developing-c.md index d82877c8ac..58ec1f0781 100644 --- a/docs/src/developing/on-chain-programs/developing-c.md +++ b/docs/src/developing/on-chain-programs/developing-c.md @@ -140,7 +140,7 @@ the [runtime enforcement policy](developing/programming-model/accounts.md#policy). When an instruction reference the same account multiple times there may be duplicate `SolAccountInfo` entries in the array but they both point back to the original -input byte array. A program should handle these case delicately to avoid +input byte array. A program should handle these cases delicately to avoid overlapping read/writes to the same buffer. If a program implements their own deserialization function care should be taken to handle duplicate accounts appropriately.