From e220f7067bf78e3bee75981c3a3d011528029ca0 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 23 Apr 2021 17:02:18 +0000 Subject: [PATCH] docs: fix formatting issue (#16761) (#16774) (cherry picked from commit c217ee3a00dac100d3a66924417d3ffd44dc762e) Co-authored-by: strykerin --- docs/src/developing/on-chain-programs/developing-rust.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/src/developing/on-chain-programs/developing-rust.md b/docs/src/developing/on-chain-programs/developing-rust.md index 99fd2d22ab..830e193070 100644 --- a/docs/src/developing/on-chain-programs/developing-rust.md +++ b/docs/src/developing/on-chain-programs/developing-rust.md @@ -30,8 +30,7 @@ Solana Rust programs may depend directly on each other in order to gain access 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` and use +symbols because they may conflict with the program's own. To avoid this, programs should define an `exclude_entrypoint` feature in `Cargo.toml` and use to exclude the entrypoint. - [Define the