Fix line lengths

This commit is contained in:
Philipp Hansch 2018-09-11 07:47:13 +02:00
parent c4ac71e1d0
commit 5ec3e1a620
No known key found for this signature in database
GPG Key ID: B6FA06A6E0E2665B
2 changed files with 6 additions and 6 deletions

View File

@ -96,9 +96,9 @@ three cases has occurred:
from metavariables to the corresponding token trees. from metavariables to the corresponding token trees.
- Failure: `tts` does not match `ms`. This results in an error message such as - Failure: `tts` does not match `ms`. This results in an error message such as
"No rule expected token _blah_". "No rule expected token _blah_".
- Error: some fatal error has occurred _in the parser_. For example, this happens - Error: some fatal error has occurred _in the parser_. For example, this
if there are more than one pattern match, since that indicates the macro is happens if there are more than one pattern match, since that indicates
ambiguous. the macro is ambiguous.
The full interface is defined [here][code_parse_int]. The full interface is defined [here][code_parse_int].

View File

@ -76,9 +76,9 @@ enable it in the `config.toml`, too:
incremental = true incremental = true
``` ```
Note that incremental compilation will use more disk space than Note that incremental compilation will use more disk space than usual.
usual. If disk space is a concern for you, you might want to check the If disk space is a concern for you, you might want to check the size
size of the `build` directory from time to time. of the `build` directory from time to time.
## Running tests manually ## Running tests manually