fix: typo in system params docs (#5624)

# Objective

- Fix a typo on `SystemParam` docs

## Solution
- added 'be'.
- Hurray my first OSS PR! 

---
This commit is contained in:
Alex 2022-08-09 16:53:27 +00:00
parent fcb77d6988
commit fe97b384a5

View File

@ -41,7 +41,7 @@ use std::{
///
/// `#[system_param(ignore)]`:
/// Can be added to any field in the struct. Fields decorated with this attribute
/// will created with the default value upon realisation.
/// will be created with the default value upon realisation.
/// This is most useful for `PhantomData` fields, to ensure that the required lifetimes are
/// used, as shown in the example.
///