From 7dfc1d979078a466292295fbb37914a08c4c3cfb Mon Sep 17 00:00:00 2001 From: Felipe Lima Date: Wed, 26 May 2021 19:38:46 -0700 Subject: [PATCH] Fix typo in docs --- 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