From a39641bde1f50ffc3f256e479b76717c3841f291 Mon Sep 17 00:00:00 2001 From: hongmengning Date: Thu, 12 Sep 2024 17:34:58 +0800 Subject: [PATCH] Remove unnecessary symbols and add missing symbols in comments --- pallets/ethereum-checked/src/lib.rs | 2 +- runtime/astar/src/lib.rs | 2 +- runtime/astar/src/precompiles.rs | 2 +- runtime/local/src/precompiles.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pallets/ethereum-checked/src/lib.rs b/pallets/ethereum-checked/src/lib.rs index e0c9b96d81..ed518ee97a 100644 --- a/pallets/ethereum-checked/src/lib.rs +++ b/pallets/ethereum-checked/src/lib.rs @@ -20,7 +20,7 @@ //! //! ## Overview //! -//! A `pallet-ethereum like pallet that execute transactions from checked source, +//! A `pallet-ethereum` like pallet that execute transactions from checked source, //! like XCM remote call. Only `Call` transactions are supported //! (no `Create`). //! diff --git a/runtime/astar/src/lib.rs b/runtime/astar/src/lib.rs index b9f1b39197..d6173180ba 100644 --- a/runtime/astar/src/lib.rs +++ b/runtime/astar/src/lib.rs @@ -16,7 +16,7 @@ // You should have received a copy of the GNU General Public License // along with Astar. If not, see . -//! The Astar Network runtime. This can be compiled with ``#[no_std]`, ready for Wasm. +//! The Astar Network runtime. This can be compiled with `#[no_std]`, ready for Wasm. #![cfg_attr(not(feature = "std"), no_std)] // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. diff --git a/runtime/astar/src/precompiles.rs b/runtime/astar/src/precompiles.rs index c2d85d0010..560aece339 100644 --- a/runtime/astar/src/precompiles.rs +++ b/runtime/astar/src/precompiles.rs @@ -16,7 +16,7 @@ // You should have received a copy of the GNU General Public License // along with Astar. If not, see . -//! The Astar Network EVM precompiles. This can be compiled with ``#[no_std]`, ready for Wasm. +//! The Astar Network EVM precompiles. This can be compiled with `#[no_std]`, ready for Wasm. use crate::RuntimeCall; use astar_primitives::precompiles::DispatchFilterValidate; diff --git a/runtime/local/src/precompiles.rs b/runtime/local/src/precompiles.rs index 0daf444b5f..20a0a9dca4 100644 --- a/runtime/local/src/precompiles.rs +++ b/runtime/local/src/precompiles.rs @@ -16,7 +16,7 @@ // You should have received a copy of the GNU General Public License // along with Astar. If not, see . -//! The Local Network EVM precompiles. This can be compiled with ``#[no_std]`, ready for Wasm. +//! The Local Network EVM precompiles. This can be compiled with `#[no_std]`, ready for Wasm. use crate::{RuntimeCall, UnifiedAccounts}; use astar_primitives::precompiles::DispatchFilterValidate;