Skip to content

Commit

Permalink
Fixed misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
vallentin authored and mark-i-m committed Jun 3, 2019
1 parent 567062c commit c2ced29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/borrow_check/moves_and_initialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ figuring out where moves occur and tracking those.
## Initialization and moves

From a user's perspective, initialization -- giving a variable some
value -- and moves -- transfering ownership to another place -- might
value -- and moves -- transferring ownership to another place -- might
seem like distinct topics. Indeed, our borrow checker error messages
often talk about them differently. But **within the borrow checker**,
they are not nearly as separate. Roughly speaking, the borrow checker
Expand Down
2 changes: 1 addition & 1 deletion src/queries/query-evaluation-model-in-detail.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ OK as long as the mutation is not observable. This is achieved by two things:
This is not an ideal setup because of the manual intervention needed, so it
should be used sparingly and only when it is well known which queries might
access a given result. In practice, however, stealing has not turned out to be
much of a maintainance burden.
much of a maintenance burden.

To summarize: "Steal queries" break some of the rules in a controlled way.
There are checks in place that make sure that nothing can go silently wrong.
Expand Down
2 changes: 1 addition & 1 deletion src/traits/slg.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ are both represented with an index.)

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

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

0 comments on commit c2ced29

Please sign in to comment.