1
0
mirror of https://github.com/chylex/IntelliJ-Rainbow-Brackets.git synced 2025-05-13 09:34:03 +02:00

minor: fix mispell in notification message ()

This commit is contained in:
Roman Kovtyukh 2021-02-11 14:25:06 +03:00 committed by GitHub
parent a014d4071a
commit ca581dedd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@ abstract class RainbowHighlightVisitor : HighlightVisitor {
val notification = group.createNotification(
"Rainbowify big files is disabled by default",
"File with line count > 1000 will not rainbowify be default. If you still want to rainbowify it, please config it in <b>Settings > Other Settings > Rainbow Brackets > Do NOT rainbowify big files</b>",
"File with line count > 1000 will not rainbowify by default. If you still want to rainbowify it, please config it in <b>Settings > Other Settings > Rainbow Brackets > Do NOT rainbowify big files</b>",
NotificationType.INFORMATION
)
@ -132,4 +132,4 @@ fun PsiElement.getLineCount(): Int {
}
return StringUtil.getLineBreakCount(text ?: "") + 1
}
}