Fix typo in docs (#17920)

This commit is contained in:
Sarat Limawongpranee 2021-06-14 23:33:23 +07:00 committed by GitHub
parent 820806c6dc
commit 3657469826
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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