From 0eddfa5556393a4ae689b561bea13f58fb6ba17b Mon Sep 17 00:00:00 2001 From: Luke Schoen Date: Mon, 4 Mar 2019 14:46:56 +0100 Subject: [PATCH] docs: Fix typos --- docs/onboarding.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/onboarding.md b/docs/onboarding.md index 8af3b0a83..275f95484 100644 --- a/docs/onboarding.md +++ b/docs/onboarding.md @@ -122,7 +122,7 @@ project. * **Module**: A collection of items: functions, structs, traits, and even other modules. Modules allow you to hierarchically split code into logical units and manage visibility. -* **Attribute**: Metadaata applied to some module, crate or item. +* **Attribute**: Metadata applied to some module, crate or item. * **Macros**: Macros are powerful meta-programming statements that get expanded into source code that gets compiled with the rest of the code (Unlike `C` macros that are pre-processed, Rust macros form an Abstract Syntax Tree). @@ -185,7 +185,7 @@ check your code. | Function / Method | ``snake_case`` | | Macro Names | ``snake_case`` | | Constants | ``SCREAMING_SNAKE_CASE`` | -| Forbidden name | Trialing Underscore: ``name_`` | +| Forbidden name | Trailing Underscore: ``name_`` | Other general rust docs: