diff options
Diffstat (limited to 'crates/ra_ide/src')
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting.rs b/crates/ra_ide/src/syntax_highlighting.rs index 3dffddce5..4061a335e 100644 --- a/crates/ra_ide/src/syntax_highlighting.rs +++ b/crates/ra_ide/src/syntax_highlighting.rs | |||
@@ -339,8 +339,8 @@ impl HighlightedRangeStack { | |||
339 | /// can only modify the last range currently on the stack. | 339 | /// can only modify the last range currently on the stack. |
340 | /// Can be used to do injections that span multiple ranges, like the | 340 | /// Can be used to do injections that span multiple ranges, like the |
341 | /// doctest injection below. | 341 | /// doctest injection below. |
342 | /// If `inject` is set to true, the parent range is deleted instead of | 342 | /// If `overwrite_parent` is non-optional, the highlighting of the parent range |
343 | /// intersected. | 343 | /// is overwritten with the argument. |
344 | /// | 344 | /// |
345 | /// Note that `pop` can be simulated by `pop_and_inject(false)` but the | 345 | /// Note that `pop` can be simulated by `pop_and_inject(false)` but the |
346 | /// latter is computationally more expensive. | 346 | /// latter is computationally more expensive. |