From da6ef4f2b3668d3ed2afd5f83d680c78474ce8e5 Mon Sep 17 00:00:00 2001 From: PG Herveou Date: Mon, 26 Feb 2024 10:01:59 +0100 Subject: [PATCH] nit --- drink/src/sandbox.rs | 2 +- examples/chain-extension/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drink/src/sandbox.rs b/drink/src/sandbox.rs index 2e0b3b9..049e72d 100644 --- a/drink/src/sandbox.rs +++ b/drink/src/sandbox.rs @@ -1,4 +1,4 @@ -//! Module containing the core trait use to customize the sandboxed runtime. +//! Module containing the sandbox trait and its prelude. use core::any::Any; diff --git a/examples/chain-extension/Cargo.toml b/examples/chain-extension/Cargo.toml index 6f70099..253dbe8 100644 --- a/examples/chain-extension/Cargo.toml +++ b/examples/chain-extension/Cargo.toml @@ -21,7 +21,7 @@ drink = { path = "../../drink" } # If you are creating a custom runtime with `drink::create_minimal_sandbox!` macro, unfortunately you need to # include these dependencies manually. Versions should match the ones in `Cargo.toml` of the `drink` crate. frame-support = "28.0.0" -frame-system = "28.0.0" +frame-system = "28.0.0" [features] default = ["std"]