Skip to content

Commit

Permalink
fix some typographical errors
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
striezel committed Jan 19, 2024
1 parent 83f1018 commit f34a649
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion updater/operations/Help.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions updater/operations/IdList.cs
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -22,7 +22,7 @@ You should have received a copy of the GNU General Public License
namespace updater.operations
{
/// <summary>
/// Lists the IDs of softwares.
/// Lists the IDs of software.
/// </summary>
public class IdList : IOperation
{
Expand Down
4 changes: 2 additions & 2 deletions updater/software/All.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class All
/// the ISoftware interface.
/// </summary>
/// <param name="opts">parsed command line options</param>
/// <returns>Returns a list of all supported softwares.</returns>
/// <returns>Returns a list of all supported software.</returns>
private static List<ISoftware> getUnfiltered(Options opts)
{
bool autoGetNewer = opts.autoGetNewer;
Expand Down Expand Up @@ -153,7 +153,7 @@ private static List<ISoftware> getUnfiltered(Options opts)
/// the ISoftware interface, but without the ones in the exclusion list.
/// </summary>
/// <param name="opts">parsed command line options</param>
/// <returns>Returns a list of all supported softwares, minus the ones in the exclusion list.</returns>
/// <returns>Returns a list of all supported software, minus the ones in the exclusion list.</returns>
public static List<ISoftware> get(Options opts)
{
var result = getUnfiltered(opts);
Expand Down
4 changes: 2 additions & 2 deletions updater/software/HeidiSQL.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)
{
Expand Down
4 changes: 2 additions & 2 deletions updater/software/ISoftware.cs
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -23,7 +23,7 @@ You should have received a copy of the GNU General Public License
namespace updater.software
{
/// <summary>
/// interface to provide information for various softwares
/// interface to provide information for various software
/// </summary>
public interface ISoftware
{
Expand Down

0 comments on commit f34a649

Please sign in to comment.