Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
  • Loading branch information
ggwpez committed Jul 27, 2023
1 parent c3cef05 commit 5a07466
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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",
+]
```

Expand Down

0 comments on commit 5a07466

Please sign in to comment.