make spellcheck green again (#6059)

* make spellcheck green again

* remove the comment

* Fix a comment in `provisioner`

Co-authored-by: Tsvetomir Dimitrov <tsvetomir@parity.io>
This commit is contained in:
Andronik
2022-09-27 10:48:49 +02:00
committed by GitHub
parent d9ea02c09a
commit 4df643271d
7 changed files with 49 additions and 55 deletions
@@ -17,14 +17,14 @@
//! Runtime API implementations for Parachains.
//!
//! These are exposed as different modules using different sets of primitives.
//! At the moment there is a v2 module for the current stable api and
//! vstaging module for all staging methods.
//! When new version of the stable api is released it will be based on v2 and
//! will contain methods from vstaging.
//! At the moment there is a `v2` module for the current stable API and
//! `vstaging` module for all staging methods.
//! When new version of the stable API is released it will be based on `v2` and
//! will contain methods from `vstaging`.
//! The promotion consists of the following steps:
//! 1. Bump the version of the stable module (e.g. v2 becomes v3)
//! 2. Move methods from vstaging to v3. The new stable version should include
//! all methods from vstaging tagged with the new version number (e.g. all
//! v3 methods).
//! 1. Bump the version of the stable module (e.g. `v2` becomes `v3`)
//! 2. Move methods from `vstaging` to `v3`. The new stable version should include
//! all methods from `vstaging` tagged with the new version number (e.g. all
//! `v3` methods).
pub mod v2;
pub mod vstaging;