Skip to content

Commit

Permalink
Doc fixses
Browse files Browse the repository at this point in the history
  • Loading branch information
bkolad committed Oct 30, 2023
1 parent 1c53556 commit 88bb370
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/rollup/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//#![deny(missing_docs)]
//#![doc = include_str!("../README.md")]
#![deny(missing_docs)]
//! StarterRollup provides a minimal self-contained rollup implementation
use async_trait::async_trait;
use sov_db::ledger_db::LedgerDB;
Expand Down Expand Up @@ -42,7 +42,7 @@ impl sov_modules_rollup_template::RollupTemplate for StarterRollup {
/// Runtime for the Native environment.
type NativeRuntime = Runtime<Self::NativeContext, Self::DaSpec>;

/// This method generates RPC methods for the rollup, allowing for extension with custom endpoints.
/// This function generates RPC methods for the rollup, allowing for extension with custom endpoints.
fn create_rpc_methods(
&self,
storage: &<Self::NativeContext as Spec>::Storage,
Expand Down Expand Up @@ -91,5 +91,5 @@ impl sov_modules_rollup_template::RollupTemplate for StarterRollup {
}
}

// Here we get `free` Wallet implementation.
// Here we get a `free` Wallet implementation.
impl sov_modules_rollup_template::WalletTemplate for StarterRollup {}

0 comments on commit 88bb370

Please sign in to comment.