Closed coke closed 5 months ago
Apologies. That test was verifying that every link had a category, and that only the categories listed in https://github.com/Raku/doc/blob/main/writing-docs/INDEXING.md#categories are considered valid. This was part of a cleanup effort a while back to make sure we weren't accidentally adding orphaned entries, and that any new categories were being added deliberately.
So
X<property|Property>
Has no category and is failing, but
X<indirect invocant syntax|Language,indirect invocant syntax>
Is in the valid "Language" category, and is OK.
X<indirect invocant syntax|Dinosaur,indirect invocant syntax>
Has the right format, but an invalid category, so we'd fix the category or add it to the explicit list in writing-docs.
Definitely willing to hear arguments about whether or not a this is a reasonable test, but it definitely helped catch some issues/typos.
Also, I can fix these particular ones! Please just keep this mind when adding new X<>
in going forward!
@coke I'll definitely keep in mind going forward. So thanks for the heads up. As far as I'm concerned, any test that picks up errors is a good test!