From f3773f17a5dafc8c20ca082df895fe7f6e069753 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Thu, 26 Dec 2024 00:36:55 +0100 Subject: [PATCH] Replace man7.org w/ man.archlinux.org Arch Linux's man page online viewer is better designed and is much more usable than man7.org whilst still being lightweight --- .../implementable/formatter/package-info.kt | 28 +++++++++++++++++++ .../engine/base/utility/FileAccess.kt | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 base/src/main/kotlin/de/staropensource/engine/base/implementable/formatter/package-info.kt diff --git a/base/src/main/kotlin/de/staropensource/engine/base/implementable/formatter/package-info.kt b/base/src/main/kotlin/de/staropensource/engine/base/implementable/formatter/package-info.kt new file mode 100644 index 0000000..7bb72d5 --- /dev/null +++ b/base/src/main/kotlin/de/staropensource/engine/base/implementable/formatter/package-info.kt @@ -0,0 +1,28 @@ +/* + * STAROPENSOURCE ENGINE SOURCE FILE + * Copyright (c) 2024 The StarOpenSource Engine Authors + * Licensed under the GNU General Public License v3. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +/** + * Contains various formatters. + * These can be used to format + * and colorize text. + * + * @see Formatter + * @since v1-alpha10 + */ +package de.staropensource.engine.base.implementable.formatter diff --git a/base/src/main/kotlin/de/staropensource/engine/base/utility/FileAccess.kt b/base/src/main/kotlin/de/staropensource/engine/base/utility/FileAccess.kt index 5807f64..9da3644 100644 --- a/base/src/main/kotlin/de/staropensource/engine/base/utility/FileAccess.kt +++ b/base/src/main/kotlin/de/staropensource/engine/base/utility/FileAccess.kt @@ -641,7 +641,7 @@ class FileAccess { * location, then nothing will be done. * * @param destination where to link to - * @param hard if the link should be hard (`true`) or symbolic (`false`). For an explanation on the two, see [symlink(7)](https://man7.org/linux/man-pages/man7/symlink.7.html) + * @param hard if the link should be hard (`true`) or symbolic (`false`). For an explanation on the two, see [symlink(7)](https://man.archlinux.org/man/symlink.7) * @return this instance * @throws IOAccessException on IO error * @see verifyIsLink