From 7d2589e2accf174d1a6e86ecf0174906449186a7 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 4 Jan 2022 11:15:06 +0000 Subject: [PATCH] Documentation typos (#22262) (#22268) * Fix typo markdown link * Add missing punctuation full stop (cherry picked from commit 9665da9d0b581a59411e5c9ce80d6eaefb600c15) Co-authored-by: glihm --- docs/src/developing/on-chain-programs/developing-c.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/developing/on-chain-programs/developing-c.md b/docs/src/developing/on-chain-programs/developing-c.md index b48509cc34..d82877c8ac 100644 --- a/docs/src/developing/on-chain-programs/developing-c.md +++ b/docs/src/developing/on-chain-programs/developing-c.md @@ -46,7 +46,7 @@ make -C Solana uses the [Criterion](https://github.com/Snaipe/Criterion) test framework and tests are executed each time the program is built [How to -Build](#how-to-build)]. +Build](#how-to-build). To add tests, create a new file next to your source file named `test_.c` and populate it with criterion test cases. For an example see the [helloworld C @@ -65,7 +65,7 @@ see the [overview](overview#loaders). Currently there are two supported loaders [BPF Loader](https://github.com/solana-labs/solana/blob/7ddf10e602d2ed87a9e3737aa8c32f1db9f909d8/sdk/program/src/bpf_loader.rs#L17) and [BPF loader -deprecated](https://github.com/solana-labs/solana/blob/7ddf10e602d2ed87a9e3737aa8c32f1db9f909d8/sdk/program/src/bpf_loader_deprecated.rs#L14) +deprecated](https://github.com/solana-labs/solana/blob/7ddf10e602d2ed87a9e3737aa8c32f1db9f909d8/sdk/program/src/bpf_loader_deprecated.rs#L14). They both have the same raw entrypoint definition, the following is the raw symbol that the runtime looks up and calls: