1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-17 14:47:35 +02:00

Replace hyphens (-) with em-dashes () (#1500)

The new Chromium class likes — like me! — to use dashes in the writing!
However, I believe it should use an em-dash instead of the hyphen.

Luckily this is easy: we have enabled “typographic quotes” in `mdbook`,
which also handles the conversion of `---` to `—` in the generated HTML.
So I normalized the single existing em-dash to a triple-dash to make it
more consistent (and hopefully make it easier for translators to
consistently enter these characters).
This commit is contained in:
Martin Geisler
2023-11-28 19:41:09 +01:00
committed by GitHub
parent d39740f91d
commit aebb0bc856
19 changed files with 42 additions and 34 deletions

View File

@ -1,4 +1,4 @@
# Dining Philosophers - Async
# Dining Philosophers --- Async
See [dining philosophers](dining-philosophers.md) for a description of the
problem.

View File

@ -1,6 +1,6 @@
# Concurrency Afternoon Exercise
## Dining Philosophers - Async
## Dining Philosophers --- Async
([back to exercise](dining-philosophers-async.md))