From deaa27fbdb2d4ca796ce970bf323cebe46b1cfad Mon Sep 17 00:00:00 2001 From: Yihau Chen Date: Mon, 14 Dec 2020 09:21:17 +0800 Subject: [PATCH] fix the typo in developing-rust.md (#14098) --- docs/src/developing/deployed-programs/developing-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/developing/deployed-programs/developing-rust.md b/docs/src/developing/deployed-programs/developing-rust.md index dbccb2e270..681f1007eb 100644 --- a/docs/src/developing/deployed-programs/developing-rust.md +++ b/docs/src/developing/deployed-programs/developing-rust.md @@ -31,7 +31,7 @@ to instruction helpers when making [cross-program invocations](developing/../../programming-model/calling-between-programs.md#cross-program-invocations). When doing so it's important to not pull in the dependent program's entrypoint symbols because they may conflict with the program's own. To avoid this -,programs should define an `exclude_entrypoint` feature in `Cargo.toml`j and use +,programs should define an `exclude_entrypoint` feature in `Cargo.toml` and use to exclude the entrypoint. - [Define the