From cedd00e82e77ad265a28e23bae495ba7257606ca Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 27 May 2021 03:13:21 +0000 Subject: [PATCH] Fix typo in docs (#17531) (cherry picked from commit 7dfc1d979078a466292295fbb37914a08c4c3cfb) Co-authored-by: Felipe Lima --- docs/src/developing/on-chain-programs/overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/developing/on-chain-programs/overview.md b/docs/src/developing/on-chain-programs/overview.md index 1ed03497a8..b24f953d65 100644 --- a/docs/src/developing/on-chain-programs/overview.md +++ b/docs/src/developing/on-chain-programs/overview.md @@ -7,12 +7,12 @@ Developers can write and deploy their own programs to the Solana blockchain. The [Helloworld example](examples.md#helloworld) is a good starting place to see how a program is written, built, deployed, and interacted with on-chain. -## Berkley Packet Filter (BPF) +## Berkeley Packet Filter (BPF) Solana on-chain programs are compiled via the [LLVM compiler infrastructure](https://llvm.org/) to an [Executable and Linkable Format (ELF)](https://en.wikipedia.org/wiki/Executable_and_Linkable_Format) containing -a variation of the [Berkley Packet Filter +a variation of the [Berkeley Packet Filter (BPF)](https://en.wikipedia.org/wiki/Berkeley_Packet_Filter) bytecode. Because Solana uses the LLVM compiler infrastructure, a program may be written