From 54bc3e606e2a3ef4c438a4e76f228aa7bd0887eb Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 14 Jun 2021 12:04:02 -0600 Subject: [PATCH] Fix typo in docs (#17920) (#17938) (cherry picked from commit 36574698266c45052ee2ff9d3f773f99ef3cb90d) Co-authored-by: Sarat Limawongpranee --- .../developing/programming-model/calling-between-programs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/developing/programming-model/calling-between-programs.md b/docs/src/developing/programming-model/calling-between-programs.md index 0dd7595282..18a95cbd49 100644 --- a/docs/src/developing/programming-model/calling-between-programs.md +++ b/docs/src/developing/programming-model/calling-between-programs.md @@ -240,7 +240,7 @@ pub fn find_program_address( Clients can use the `create_program_address` function to generate a destination address. In this example, we assume that -`create_program_address(&[&["escrow]], &escrow_program_id)` generates a valid +`create_program_address(&[&["escrow"]], &escrow_program_id)` generates a valid program address that is off the curve. ```rust,ignore