Restore text wrapping (#16776) (#16780)

(cherry picked from commit da58f20a99)

Co-authored-by: Tyera Eulberg <teulberg@gmail.com>
This commit is contained in:
mergify[bot]
2021-04-23 17:34:47 +00:00
committed by GitHub
parent f31f1d0f52
commit 826111cf79

View File

@@ -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 to instruction helpers when making [cross-program
invocations](developing/../../programming-model/calling-between-programs.md#cross-program-invocations). 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 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. to exclude the entrypoint.
- [Define the - [Define the