doc: Update syntax.
doc/home.md
| 8 | 8 | easily be kept in version control with git for instance. The file looks | |
| 9 | 9 | like this: | |
| 10 | 10 | ||
| 11 | - | ```scm | |
| 11 | + | ```scheme | |
| 12 | 12 | (use-modules (home)) | |
| 13 | 13 | ||
| 14 | 14 | (home "/data/alice" '()) | |
… | |||
| 21 | 21 | ||
| 22 | 22 | Import home modules with name _module-name_. For instance, | |
| 23 | 23 | ||
| 24 | - | ```scm | |
| 24 | + | ```scheme | |
| 25 | 25 | (use-home-modules openbox hexchat) | |
| 26 | 26 | ``` | |
| 27 | 27 | ||
| 28 | 28 | is equivalent to: | |
| 29 | 29 | ||
| 30 | - | ```scm | |
| 30 | + | ```scheme | |
| 31 | 31 | (use-modules (home openbox) | |
| 32 | 32 | (home hexchat)) | |
| 33 | 33 | ``` | |