Book: diagram takes less space and it's more symmetric.

This commit is contained in:
Steven Burns 2016-06-04 14:04:17 -06:00
parent b1605fe8f7
commit e9f6c0f83a

View file

@ -22,12 +22,10 @@ As an example, lets make a *phrases* crate, which will give us various phrase
in different languages. To keep things simple, well stick to greetings and
farewells as two kinds of phrases, and use English and Japanese (日本語) as
two languages for those phrases to be in. Well use this module layout:
```text
+-----------+
+---| greetings |
| +-----------+
+---------+ |
+---------+ | +-----------+
+---| english |---+
| +---------+ | +-----------+
| +---| farewells |
@ -37,8 +35,7 @@ two languages for those phrases to be in. Well use this module layout:
| +---| greetings |
| +----------+ | +-----------+
+---| japanese |--+
+----------+ |
| +-----------+
+----------+ | +-----------+
+---| farewells |
+-----------+
```