From ce9232af37a75d773cce9518236398c00888466d Mon Sep 17 00:00:00 2001 From: greggzigler Date: Wed, 10 Aug 2022 13:49:32 -0700 Subject: [PATCH] Changelog-None --- doc/STYLE.md | 2 +- doc/schemas/WRITING_SCHEMAS.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/STYLE.md b/doc/STYLE.md index 9936fa0cd..78422daf1 100644 --- a/doc/STYLE.md +++ b/doc/STYLE.md @@ -198,7 +198,7 @@ for programs to deal with them sanely, and also perform translations. We use JSON schemas to validate that JSON-RPC returns are in the correct form, and also to generate documentation. See -[WRITING_SCHEMAS.md](schemas/WRITING_SCHEMAS.md). +[writing schemas manpage](schemas/WRITING_SCHEMAS.md). ## Changing JSON APIs diff --git a/doc/schemas/WRITING_SCHEMAS.md b/doc/schemas/WRITING_SCHEMAS.md index 2303ad668..bf42a5fff 100644 --- a/doc/schemas/WRITING_SCHEMAS.md +++ b/doc/schemas/WRITING_SCHEMAS.md @@ -5,10 +5,10 @@ look like; in our case we use it in our testsuite to check that they match command responses, and also use it to generate our documentation. -Yes, schemas are horrible to write, but they're damn useful. We can -only use a subset of the full [https://json-schema.org/](JSON Schema -Specification), but if you find that limiting it's probably a sign -that you should simplify your JSON output. +Yes, schemas are horrible to write, but they're damn useful. We can only +use a subset of the full [JSON Schema Specification](https://json-schema.org/), +but if you find that limiting it's probably a sign that you should simplify +your JSON output. ## How to Write a Schema