From 5a074661c8109ff20955e46f6a3b4c9a4f9221bb Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Thu, 27 Jul 2023 14:02:13 +0200 Subject: [PATCH] Update README.md Signed-off-by: Oliver Tale-Yazdi --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b3fd195..88b7744 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ Let's check that the `runtime-benchmarks` feature is properly passed down to all zepter lint propagate-feature --feature runtime-benchmarks -p frame-support --workspace ``` -The output reveals that there are some dependencies that expose the feature but don't get it passed down: +The output reveals that some dependencies expose the feature but don't get it passed down: ```pre -crate "frame-support" - feature "runtime-benchmarks" +crate 'frame-support' + feature 'runtime-benchmarks' must propagate to: frame-system sp-runtime @@ -42,7 +42,7 @@ This can be fixed by appending the `--fix` flag, which results in this diff: +runtime-benchmarks = [ + "frame-system/runtime-benchmarks", + "sp-runtime/runtime-benchmarks", -+ "sp-staking/runtime-benchmarks" ++ "sp-staking/runtime-benchmarks", +] ```