Skip to content

Commit 2000eee

Browse files
committed
Documentation.
1 parent 8676f66 commit 2000eee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Source/Gapotchenko.GnuTK/Toolkits/MetaToolkit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Gapotchenko.GnuTK.Toolkits;
99

1010
/// <summary>
11-
/// Represents a GNU toolkit consisting of multiple underlying toolkits.
11+
/// Represents an amalgamation of GNU toolkits.
1212
/// </summary>
1313
sealed class MetaToolkit(IScriptableToolkit scriptableToolkit, IEnumerable<IToolkitEnvironment> toolkitEnvironments) :
1414
IScriptableToolkit,

Source/Gapotchenko.GnuTK/Toolkits/ToolkitServices.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public static IEnumerable<IToolkit> SelectToolkits(IEnumerable<IToolkit> toolkit
8888
}
8989

9090
// Step 3. To use a toolkit environment, at least one non-isolated scriptable toolkit is needed
91-
if (selectedToolkits is not null && // if selected toolkits
91+
if (selectedToolkits is not null && // if the selected toolkits
9292
!selectedToolkits.OfType<IScriptableToolkit>().Any() && // have no scriptable toolkits
9393
selectedToolkits.OfType<IToolkitEnvironment>().Any()) // but have a toolkit environment
9494
{
@@ -161,7 +161,7 @@ static IReadOnlyList<IToolkitFamily> GetSupportedToolkitFamilies()
161161
else if (Environment.OSVersion.Platform == PlatformID.Unix)
162162
{
163163
// Generic fallback on a Unix-based host system.
164-
// While GNU is not Unix, Unix is a close enough native alternative.
164+
// While GNU is not Unix, Unix is a close enough alternative.
165165
return [SystemToolkitFamily.Instance];
166166
}
167167
else

0 commit comments

Comments
 (0)