Skip to content

Commit c2ced29

Browse files
vallentinmark-i-m
authored andcommitted
Fixed misspelling
1 parent 567062c commit c2ced29

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/borrow_check/moves_and_initialization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ figuring out where moves occur and tracking those.
77
## Initialization and moves
88

99
From a user's perspective, initialization -- giving a variable some
10-
value -- and moves -- transfering ownership to another place -- might
10+
value -- and moves -- transferring ownership to another place -- might
1111
seem like distinct topics. Indeed, our borrow checker error messages
1212
often talk about them differently. But **within the borrow checker**,
1313
they are not nearly as separate. Roughly speaking, the borrow checker

src/queries/query-evaluation-model-in-detail.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ OK as long as the mutation is not observable. This is achieved by two things:
204204
This is not an ideal setup because of the manual intervention needed, so it
205205
should be used sparingly and only when it is well known which queries might
206206
access a given result. In practice, however, stealing has not turned out to be
207-
much of a maintainance burden.
207+
much of a maintenance burden.
208208

209209
To summarize: "Steal queries" break some of the rules in a controlled way.
210210
There are checks in place that make sure that nothing can go silently wrong.

src/traits/slg.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ are both represented with an index.)
147147

148148
For each strand, we also optionally store a *selected subgoal*. This
149149
is the subgoal after the turnstile (`:-`) that we are currently trying
150-
to prove in this strand. Initally, when a strand is first created,
150+
to prove in this strand. Initially, when a strand is first created,
151151
there is no selected subgoal.
152152

153153
[`ExClause`]: https://rust-lang.github.io/chalk/doc/chalk_engine/struct.ExClause.html

0 commit comments

Comments
 (0)