Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use title "The Rust Edition Guide" everywhere #280

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ online](https://doc.rust-lang.org/nightly/edition-guide/).

## License

The Edition Guide is dual licensed under `MIT`/`Apache2`, just like Rust itself.
See the `LICENSE-*` files in this repository for more details.
The Rust Edition Guide is dual licensed under `MIT`/`Apache2`, just like Rust
itself. See the `LICENSE-*` files in this repository for more details.

## Building locally

Expand Down
2 changes: 1 addition & 1 deletion book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["The Rust Project Developers"]
multilingual = false
src = "src"
title = "The Edition Guide"
title = "The Rust Edition Guide"

[output.html]
git-repository-url = "https://github.com/rust-lang/edition-guide"
Expand Down
2 changes: 1 addition & 1 deletion src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The Edition Guide
# The Rust Edition Guide

[Introduction](introduction.md)

Expand Down
6 changes: 3 additions & 3 deletions src/editions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ there might be some corner cases where manual changes are still required.
The tooling tries hard to avoid changes
to semantics that could affect the correctness or performance of the code.

In addition to tooling, we also maintain this Edition Migration Guide that covers
In addition to tooling, we also maintain this Rust Edition Guide that covers
the changes that are part of an edition.
This guide describes each change and gives pointers to where you can learn more about it.
It also covers any corner cases or details you should be aware of.
This guide serves both as an overview of the edition
This guide serves as an overview of editions,
as a migration guide for specific editions,
and as a quick troubleshooting reference
if you encounter problems with the automated tooling.

2 changes: 1 addition & 1 deletion src/introduction.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introduction

Welcome to the Rust Edition Guide! "Editions" are Rust's way of introducing
Welcome to The Rust Edition Guide! "Editions" are Rust's way of introducing
changes into the language that would not otherwise be backwards
compatible.

Expand Down