test, docs: Restrict long lines in markdown linter

It's getting out of hand...
This commit is contained in:
James Shubin
2018-02-22 16:19:23 -05:00
parent f01eea33e9
commit 05c60d9a59
6 changed files with 30 additions and 15 deletions

View File

@@ -53,7 +53,8 @@ can be impossible to infer the item's type.
#### map
An unordered set of unique keys of the same type and corresponding value pairs
of another type, eg: `{"boiling" => 100, "freezing" => 0, "room" => "25", "house" => 22, "canada" => -30,}`.
of another type, eg:
`{"boiling" => 100, "freezing" => 0, "room" => "25", "house" => 22, "canada" => -30,}`.
That is to say, all of the keys must have the same type, and all of the values
must have the same type. You can use any type for either, although it is
probably advisable to avoid using very complex types as map keys.