diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2023-02-16 22:47:58 +0100 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2023-02-16 22:07:07 +0000 |
commit | e3f3470a6c41afc33084756de4e8bdecfe7acaa2 (patch) | |
tree | b251b7ae8ca964343c7a4427a9a1305cd25edd57 /Base/usr | |
parent | bcfbe0fbf7465ed6706d806b69c5eaa2dcfc6325 (diff) | |
download | serenity-e3f3470a6c41afc33084756de4e8bdecfe7acaa2.zip |
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
Diffstat (limited to 'Base/usr')
-rw-r--r-- | Base/usr/share/man/man5/presenter.md | 2 |
1 files changed, 1 insertions, 1 deletions
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. |