From da58f20a9963070b4f0898e067570cf80bdb412e Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Fri, 23 Apr 2021 11:03:21 -0600 Subject: [PATCH] Restore text wrapping (#16776) --- docs/src/developing/on-chain-programs/developing-rust.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/developing/on-chain-programs/developing-rust.md b/docs/src/developing/on-chain-programs/developing-rust.md index 812b3b06c2..9c251e56fa 100644 --- a/docs/src/developing/on-chain-programs/developing-rust.md +++ b/docs/src/developing/on-chain-programs/developing-rust.md @@ -30,7 +30,8 @@ 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