Skip to content

Commit afc196c

Browse files
jplattelnicola
authored andcommitted
Fix typos found by crate-ci/typos
1 parent a97f321 commit afc196c

File tree

50 files changed

+60
-60
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+60
-60
lines changed

blog/_posts/2019-10-16-finance.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The current scheme for payouts is as follows:
4444
* the final arrangement is made public
4545
4646
The biggest weakness of this scheme is that the decision quorum is not well-balanced.
47-
We hope to overcome this issue by being transparent and tweaking the descision process if it doesn't work well.
47+
We hope to overcome this issue by being transparent and tweaking the decision process if it doesn't work well.
4848

4949
We also need to pay taxes from the money we receive via Open Collective.
5050
The VAT is 19%, but donations from EU-based companies are exempt from VAT.
@@ -57,7 +57,7 @@ So, the final formula for the yearly budget looks like this:
5757
(cost * 10/8 payouts * 119/100 VAT * 108/100 transaction fee) * 12
5858
----
5959

60-
Pluggin the costs from above, we get the following budget targets:
60+
Plugging in the costs from above, we get the following budget targets:
6161

6262
**52050 EUR / Year**: I dedicate half of my time for rust-analyzer, 20% of the budget is spend funding people outside of Ferrous Systems.
6363

blog/_posts/2020-02-11-2019-financial-report.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We've rounded that number up to 10000 (using some funds from this year) and spli
1212
* 20% for contributors, not affiliated with Ferrous
1313
1414
Ferrous share went to paying for part of https://github.com/matklad[@matklad]'s time (thats me!), and for administrative tasks.
15-
The remaining 2000 EUR were payed to https://github.com/flodiebold[@flodiebold] for implementing and maintaining type inference infrastructure of rust-analyzer.
15+
The remaining 2000 EUR were paid to https://github.com/flodiebold[@flodiebold] for implementing and maintaining type inference infrastructure of rust-analyzer.
1616

1717
Our biggest Open Collective sponsors in 2019 were:
1818

blog/_posts/2020-04-20-first-release.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Extend selection kbd:[Shift+Alt+->]::
142142
This is again a feature which is relatively simple to implement, but a huge helper.
143143
It progressively selects larger and larger expressions, statements and items.
144144
It works exceptionally well in combination with multiple cursors.
145-
One hidden capability of this feature is a navigation help: if you are in a middle of a function, you can get to the beginning of it by extending seleciton several times, and then pressing kbd:[<-].
145+
One hidden capability of this feature is a navigation help: if you are in a middle of a function, you can get to the beginning of it by extending selection several times, and then pressing kbd:[<-].
146146

147147
video::/assets/blog/first-release/extend-selection.webm[options="autoplay,loop",width=100%]
148148

blog/_posts/2020-05-18-next-few-years.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ One wrinkle here is that rustc test suite at the moment consists predominantly o
187187
Such a test suite is ideal for testing conformance and catching regressions, but is not really well suited for rapid TDD.
188188
I think we should make an effort to build a unit test suite a-la rust-analyzer, such that it's easy, for example, to test name resolution without building the type checker, and which doesn't require stdlib.
189189

190-
== Scaling Maintainance
190+
== Scaling Maintenance
191191

192192
Finally, all changes here represent deep cuts into an existing body of software.
193193
Pushing such ambitious projects to completion require people, who can dedicate significant amounts of their time and energy.

blog/_posts/2020-09-16-challeging-LR-parsing.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ So, here's
115115
Design error _resilient_ (and not just error _recovering_) LR parsing algorithm.
116116

117117
Note that error resilience is a topic orthogonal to error reporting.
118-
I haven't payed much attention to error reporting (in my experience, synchronous reporting of syntax errors in the editor compensates for bad syntax error messages), but it might be the case that MCRS are a good approach to there.
118+
I haven't paid much attention to error reporting (in my experience, synchronous reporting of syntax errors in the editor compensates for bad syntax error messages), but it might be the case that MCRS are a good approach to there.
119119

120120
== Expressions Grammar
121121

@@ -191,7 +191,7 @@ Implement LSP server which provides basic IDE features, as well as live preview.
191191

192192
== Challenge Responses
193193

194-
Folks fom https://galois.com/[Galois] develop a classy-named https://github.com/GaloisInc/daedalus[DaeDaLus] -- a flexible data description language for generating parsers with data dependencies.
194+
Folks from https://galois.com/[Galois] develop a classy-named https://github.com/GaloisInc/daedalus[DaeDaLus] -- a flexible data description language for generating parsers with data dependencies.
195195
DaeDaLus makes an impressive attempt at solving the second challenge.
196196
The language is powerful enough to just
197197
https://github.com/GaloisInc/daedalus/blob/fe088fefc553e37974b47345a1da4b49a10da7f7/bin-exp/pratt-bin-expr.ddl#L53-L69[directly encode]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Django web framework has a nice pattern to implement this -- function based view
127127
----
128128
129129
def my_form(request):
130-
ctx = fetch_stuff_from_postgress()
130+
ctx = fetch_stuff_from_postgres()
131131
if request.method == 'POST':
132132
# apply changes ...
133133
else:

blog/_posts/2023-12-26-the-heart-of-a-language-server.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ There are two properties of the underlying languages which make this approach wo
257257

258258
1. Syntactic nesting must match semantic nesting.
259259
Looking at parent's sibling makes sense only if the current element should be among the siblings.
260-
2. Getting sematic element for an entire file is trivial.
260+
2. Getting semantic element for an entire file is trivial.
261261

262262
The second one is actually less true in Rust than it is in Kotlin or C#!
263263
In those languages, each file starts with a package declaration, which immediately mounts the file at the appropriate place in the semantic model.

thisweek/_posts/2020-02-03-changelog-10.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Release: release:2020-02-03[]
1414
== Fixes
1515

1616
* pr:2933[] don't compute diagnostics on the main thread.
17-
That fixes a long-standing issue with peformance degradation due to `cargo check`.
17+
That fixes a long-standing issue with performance degradation due to `cargo check`.
1818
* pr:2810[] make magical search of struct literals work in more contexts.
1919
* pr:2916[] fix slow `cargo check` performance due to unbuffered reads.
2020
* pr:2924[] avoid spawning more than one Cargo for `cargo check`.

thisweek/_posts/2020-03-02-changelog-14.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ image::https://user-images.githubusercontent.com/1711539/75685982-c56a8480-5c9b-
3232
* pr:3355[] add completion & docs for `featureFlag` configuration in VS Code extension.
3333
* pr:3309[] look for `Cargo.toml` not only in the root and parent directory, but also among one-level child directories.
3434
* pr:3387[] type inference for slice patterns.
35-
* pr:3397[] add minimal metatdata to VS Code extension.
35+
* pr:3397[] add minimal metadata to VS Code extension.
3636

3737
== Fixes
3838

thisweek/_posts/2020-03-09-changelog-15.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ image::https://user-images.githubusercontent.com/906069/76160803-92a60d80-612d-1
1818
+
1919
image::https://user-images.githubusercontent.com/1711539/76219227-cd837080-6215-11ea-8d0d-a9447b1d26b1.gif[]
2020
+
21-
Insertion of snippets is controled by `completion.insertion.add-argument-snippets` feature flag.
21+
Insertion of snippets is controlled by `completion.insertion.add-argument-snippets` feature flag.
2222

2323
* pr:3498[] when completing function call, trigger parameter hints automatically.
2424
* pr:3500[] more concise mode for parameter hints:

0 commit comments

Comments
 (0)