Tweak some words improved representation

This PR has implemented improved representation.

- Use "lib" instead of "lifb"
- Use "triggered" instead of "triggere"
- Use "blacklisted_name" instead of "blackisted_name"
- Use "stabilization" instead of "stabilisation"
- Use "behavior" instead of "behaviour"
- Use "target" instead of "tartet"
- Use "checked_add" instead of "chcked_add"
- Use "anti-pattern" instead of "antipattern"
- Use "suggestion" instead of "suggesttion"
- Use "example" instead of "exampel"
- Use "Cheat Sheet" instead of "Cheatsheet"
This commit is contained in:
ydah 2022-05-13 14:20:25 +09:00
parent a3d1f28849
commit 4e5f69cc86
16 changed files with 23 additions and 23 deletions

View file

@ -46,10 +46,10 @@ fn issue_1647_ref_mut() {
mod tests {
fn issue_7305() {
// `blackisted_name` lint should not be triggered inside of the test code.
// `blacklisted_name` lint should not be triggered inside of the test code.
let foo = 0;
// Check that even in nested functions warning is still not triggere.
// Check that even in nested functions warning is still not triggered.
fn nested() {
let foo = 0;
}