From f34a649d040d359bbebdad3060ed8591db6b7017 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Fri, 19 Jan 2024 21:23:14 +0100 Subject: [PATCH] fix some typographical errors [ci skip] --- readme.md | 2 +- updater/operations/Help.cs | 2 +- updater/operations/IdList.cs | 4 ++-- updater/software/All.cs | 4 ++-- updater/software/HeidiSQL.cs | 4 ++-- updater/software/ISoftware.cs | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/readme.md b/readme.md index 61529afe..a40e5cce 100644 --- a/readme.md +++ b/readme.md @@ -90,7 +90,7 @@ these may be specified. Valid operations are: * **version** - shows version of the program. * **license** - shows license information for the program. * **list-id** - prints a list of software IDs to the standard output. These IDs - can be used to exculde certain software from updates. See the + can be used to exclude certain software from updates. See the option `--exclude` below for more information. ### Options diff --git a/updater/operations/Help.cs b/updater/operations/Help.cs index 311c5747..d1a55742 100644 --- a/updater/operations/Help.cs +++ b/updater/operations/Help.cs @@ -40,7 +40,7 @@ public int perform() + " version - shows version of the program." + Environment.NewLine + " license - shows license information for the program." + Environment.NewLine + " list-id - prints a list of software IDs to the standard output. These IDs\r\n" - + " can be used to exculde certain software from updates. See the\r\n" + + " can be used to exclude certain software from updates. See the\r\n" + " option --exclude below for more information.\r\n" + Environment.NewLine + "Options:" + Environment.NewLine diff --git a/updater/operations/IdList.cs b/updater/operations/IdList.cs index 8377e106..c9138cdf 100644 --- a/updater/operations/IdList.cs +++ b/updater/operations/IdList.cs @@ -1,6 +1,6 @@ /* This file is part of the updater command line interface. - Copyright (C) 2017, 2020 Dirk Stolle + Copyright (C) 2017, 2020, 2024 Dirk Stolle 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 @@ -22,7 +22,7 @@ You should have received a copy of the GNU General Public License namespace updater.operations { /// - /// Lists the IDs of softwares. + /// Lists the IDs of software. /// public class IdList : IOperation { diff --git a/updater/software/All.cs b/updater/software/All.cs index 1efd7858..4e107d11 100644 --- a/updater/software/All.cs +++ b/updater/software/All.cs @@ -37,7 +37,7 @@ public class All /// the ISoftware interface. /// /// parsed command line options - /// Returns a list of all supported softwares. + /// Returns a list of all supported software. private static List getUnfiltered(Options opts) { bool autoGetNewer = opts.autoGetNewer; @@ -153,7 +153,7 @@ private static List getUnfiltered(Options opts) /// the ISoftware interface, but without the ones in the exclusion list. /// /// parsed command line options - /// Returns a list of all supported softwares, minus the ones in the exclusion list. + /// Returns a list of all supported software, minus the ones in the exclusion list. public static List get(Options opts) { var result = getUnfiltered(opts); diff --git a/updater/software/HeidiSQL.cs b/updater/software/HeidiSQL.cs index c3bdb194..7f5d0f5e 100644 --- a/updater/software/HeidiSQL.cs +++ b/updater/software/HeidiSQL.cs @@ -1,6 +1,6 @@ /* This file is part of the updater command line interface. - Copyright (C) 2022, 2023 Dirk Stolle + Copyright (C) 2022, 2023, 2024 Dirk Stolle 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 @@ -190,7 +190,7 @@ public override bool needsUpdate(DetectedSoftware detected) { // HeidiSQL version information from registry only contains the // major and minor version number, e. g. 12.1 instead of the full - // version number 12.1.0.6537. Therefore, comparision should only + // version number 12.1.0.6537. Therefore, comparison should only // consider the first two numbers for updates. var verDetected = new Quartet(detected.displayVersion) { diff --git a/updater/software/ISoftware.cs b/updater/software/ISoftware.cs index de843409..3773475d 100644 --- a/updater/software/ISoftware.cs +++ b/updater/software/ISoftware.cs @@ -1,6 +1,6 @@ /* This file is part of the updater command line interface. - Copyright (C) 2017, 2020, 2021 Dirk Stolle + Copyright (C) 2017, 2020, 2021, 2024 Dirk Stolle 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 @@ -23,7 +23,7 @@ You should have received a copy of the GNU General Public License namespace updater.software { /// - /// interface to provide information for various softwares + /// interface to provide information for various software /// public interface ISoftware {