Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary symbols and add missing symbols in comments #1360

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pallets/ethereum-checked/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`).
//!
Expand Down
2 changes: 1 addition & 1 deletion runtime/astar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// You should have received a copy of the GNU General Public License
// along with Astar. If not, see <http://www.gnu.org/licenses/>.

//! 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.
Expand Down
2 changes: 1 addition & 1 deletion runtime/astar/src/precompiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// You should have received a copy of the GNU General Public License
// along with Astar. If not, see <http://www.gnu.org/licenses/>.

//! 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;
Expand Down
2 changes: 1 addition & 1 deletion runtime/local/src/precompiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// You should have received a copy of the GNU General Public License
// along with Astar. If not, see <http://www.gnu.org/licenses/>.

//! 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;
Expand Down