Remove @brief annotations from Rust API docs (#20769)
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
//! @brief The latest Solana BPF loader.
|
||||
//! The latest Solana BPF loader.
|
||||
//!
|
||||
//! The BPF loader is responsible for loading, finalizing, and executing BPF
|
||||
//! programs. Not all networks may support the latest loader. You can use the
|
||||
|
@ -1,4 +1,4 @@
|
||||
//! @brief The original and now deprecated Solana BPF loader.
|
||||
//! The original and now deprecated Solana BPF loader.
|
||||
//!
|
||||
//! The BPF loader is responsible for loading, finalizing, and executing BPF
|
||||
//! programs.
|
||||
|
@ -1,4 +1,4 @@
|
||||
//! @brief An Upgradeable Solana BPF loader.
|
||||
//! An Upgradeable Solana BPF loader.
|
||||
//!
|
||||
//! The upgradeable BPF loader is responsible for deploying, upgrading, and
|
||||
//! executing BPF programs. The upgradeable loader allows a program's authority
|
||||
|
@ -1,4 +1,4 @@
|
||||
//! @brief Solana Rust-based BPF program entry point supported by the latest
|
||||
//! Solana Rust-based BPF program entry point supported by the latest
|
||||
//! BPFLoader. For more information see './bpf_loader.rs'
|
||||
|
||||
extern crate alloc;
|
||||
|
@ -1,5 +1,5 @@
|
||||
#![allow(clippy::integer_arithmetic)]
|
||||
//! @brief Solana Rust-based BPF program entry point supported by the original
|
||||
//! Solana Rust-based BPF program entry point supported by the original
|
||||
//! and now deprecated BPFLoader. For more information see
|
||||
//! './bpf_loader_deprecated.rs'
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
//! @brief Solana Rust-based BPF program logging
|
||||
//! Solana Rust-based BPF program logging
|
||||
|
||||
use crate::account_info::AccountInfo;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
//! @brief Solana Rust-based BPF memory operations
|
||||
//! Solana Rust-based BPF memory operations
|
||||
|
||||
/// Memcpy
|
||||
///
|
||||
|
@ -1,4 +1,4 @@
|
||||
//! @brief Syscall stubs when building for programs for non-BPF targets
|
||||
//! Syscall stubs when building for programs for non-BPF targets
|
||||
|
||||
#![cfg(not(target_arch = "bpf"))]
|
||||
|
||||
|
Reference in New Issue
Block a user