From 4e3b0ed05f6b4fbc6a51de60ff3e54c5f254a430 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Wed, 11 Nov 2020 16:03:09 +0000 Subject: [PATCH] add a length limit to `order` --- proposals/1772-groups-as-rooms.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proposals/1772-groups-as-rooms.md b/proposals/1772-groups-as-rooms.md index e7d6eea7..4fde7d63 100644 --- a/proposals/1772-groups-as-rooms.md +++ b/proposals/1772-groups-as-rooms.md @@ -111,10 +111,10 @@ relationship can be expressed in one of two ways: The `order` key is a string which is used to provide a default ordering of siblings in the room list. (Rooms are sorted based on a lexicographic - ordering of `order` values; rooms with no `order` come last. `order`s - which are not strings, or do not consist solely of ascii characters in the - range `\x20` (space) to `\x7F` (`~`) are forbidden and should be ignored if - received.) + ordering of `order` values; rooms with no `order` come last. `order`s which + are not strings, or do not consist solely of ascii characters in the range + `\x20` (space) to `\x7F` (`~`), or consist of more than 50 characters, are + forbidden and should be ignored if received.) If `default` is set to `true`, that indicates a "default child": see [below](#default-children).