Skip to content

Commit 6e2e178

Browse files
authored
Merge pull request #72 from lnicola/patch-1
Fix two small typos
2 parents 43f5643 + 203d6f6 commit 6e2e178

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blog/_posts/2020-09-28-how-to-make-a-light-bulb.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ I don't know which editor/IDE pioneered the light bulb UX; if you know, please l
4545

4646
If we squint hard enough, an IDE/LSP server works a bit like a web server.
4747
It accepts requests like "`what is the definition of symbol on line 23?`", processes them according to the language semantics and responds back.
48-
Some requests also modify the data model itself ("here's the new next of foo.rs file: '...'").
48+
Some requests also modify the data model itself ("here's the new text of foo.rs file: '...'").
4949
Generally, the state of the world might change between any two requests.
5050

5151
****
@@ -64,7 +64,7 @@ Both request are initiated by user's actions, and arbitrary events might happen
6464
Hence, assists can't assume that the state of the world is intact between `list` and `apply` actions.
6565

6666
This leads to the following interface for assists (lightly adapted
67-
https://github.com/JetBrains/intellij-community/blob/680dbb522465d3fd3b599c2c582a7dec9c5ad02b/platform/analysis-api/src/com/intellij/codeInsight/intention/IntentionAction.java[`InteitionAction`]
67+
https://github.com/JetBrains/intellij-community/blob/680dbb522465d3fd3b599c2c582a7dec9c5ad02b/platform/analysis-api/src/com/intellij/codeInsight/intention/IntentionAction.java[`IntentionAction`]
6868
from IntelliJ
6969
)
7070

0 commit comments

Comments
 (0)