Skip to content

Commit 590ec4b

Browse files
committed
Fix typos in non-RFCs
1 parent 00997d7 commit 590ec4b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

compiler_changes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ submitted later if there is scope for large changes to the language RFC.
2828
* Adding, removing, or changing a stable compiler flag
2929
* The implementation of new language features where there is significant change
3030
or addition to the compiler. There is obviously some room for interpretation
31-
about what consitutes a "significant" change and how much detail the
31+
about what constitutes a "significant" change and how much detail the
3232
implementation RFC needs. For guidance, [associated items](text/0195-associated-items.md)
3333
and [UFCS](text/0132-ufcs.md) would clearly need an implementation RFC,
3434
[type ascription](text/0803-type-ascription.md) and
@@ -41,7 +41,7 @@ submitted later if there is scope for large changes to the language RFC.
4141

4242
* Bug fixes, improved error messages, etc.
4343
* Minor refactoring/tidying up
44-
* Implmenting language features which have an accepted RFC, where the
44+
* Implementing language features which have an accepted RFC, where the
4545
implementation does not significantly change the compiler or require
4646
significant new design work
4747
* Adding unstable API for tools (note that all compiler API is currently unstable)

libs_changes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ as `std` has become more conservative in favour of the much more agile cargovers
7676
* Too marginal for std
7777
* Significant implementation problems
7878

79-
* A PR may also be closed because an RFC is approriate.
79+
* A PR may also be closed because an RFC is appropriate.
8080

8181
* A (non-RFC) PR may be **merged as unstable**. In this case, the feature
8282
should have a fresh feature gate and an associated tracking issue for

style-guide/expressions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ Examples:
643643
```rust
644644
match foo {
645645
foo => bar,
646-
a_very_long_patten | another_pattern if an_expression() => {
646+
a_very_long_pattern | another_pattern if an_expression() => {
647647
no_room_for_this_expression()
648648
}
649649
foo => {

0 commit comments

Comments
 (0)