From e3f3470a6c41afc33084756de4e8bdecfe7acaa2 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Thu, 16 Feb 2023 22:47:58 +0100 Subject: [PATCH] Presenter: Fix unintentional U+00A0 codepoint in text Found using git grep -FIn $'\u00a0' I just got bit by this type of bug in a different project, and was wondering whether Serenity has this problem, too. See also: https://dhwthompson.com/2019/my-favourite-git-commit --- Base/usr/share/man/man5/presenter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Base/usr/share/man/man5/presenter.md b/Base/usr/share/man/man5/presenter.md index 2cad2fee76..e2eea7a5f0 100644 --- a/Base/usr/share/man/man5/presenter.md +++ b/Base/usr/share/man/man5/presenter.md @@ -46,7 +46,7 @@ The slides array contains a list of slide objects, their JSON order determines t Most slide objects are graphical objects of one of the pre-defined types. All graphical objects, like GUI widgets, have a bounding box rectangle which determines their position and size. Objects choose which frames they appear on. -In the file format, slide objects are JSON objects with the following basic properties: +In the file format, slide objects are JSON objects with the following basic properties: - `type`: (string enum) Specifies the type of the slide object and what other properties the object may have, see below. - `rect`: (4-element array of integers: `[left, top, width, height]`, optional) Specifies the bounding box of the object. Is mandatory for most types.