diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-04-12 19:26:23 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-12 19:26:23 +0100 |
commit | 27e80e943824855c5913f20a776b3a5fa959e942 (patch) | |
tree | bef77abe99967e7a17c3f7f323fb879611cea16f /crates/ide | |
parent | 9f25676f0cb8e89d621d9da5951a54ef814dbd0f (diff) | |
parent | 2f60cec3acb8e63d25e752c82f7f4ca3ed2ec5b1 (diff) |
Merge #8488
8488: Fix typo: liner -> linear r=SomeoneToIgnore a=NieDzejkob
:see_no_evil:
Co-authored-by: Jakub Kądziołka <[email protected]>
Diffstat (limited to 'crates/ide')
-rw-r--r-- | crates/ide/src/syntax_highlighting/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/syntax_highlighting/tests.rs b/crates/ide/src/syntax_highlighting/tests.rs index de2d22ac7..b4818060f 100644 --- a/crates/ide/src/syntax_highlighting/tests.rs +++ b/crates/ide/src/syntax_highlighting/tests.rs | |||
@@ -289,7 +289,7 @@ fn syntax_highlighting_not_quadratic() { | |||
289 | assert_linear(&measures) | 289 | assert_linear(&measures) |
290 | } | 290 | } |
291 | 291 | ||
292 | /// Checks that a set of measurements looks like a liner function rather than | 292 | /// Checks that a set of measurements looks like a linear function rather than |
293 | /// like a quadratic function. Algorithm: | 293 | /// like a quadratic function. Algorithm: |
294 | /// | 294 | /// |
295 | /// 1. Linearly scale input to be in [0; 1) | 295 | /// 1. Linearly scale input to be in [0; 1) |