diff --git a/src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs b/src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs
index f8086e8165..00845f11d9 100644
--- a/src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs
+++ b/src/dsc/v3/PowerToys.DSC.UnitTests/BaseDscTest.cs
@@ -36,7 +36,7 @@ public class BaseDscTest
/// Execute a dsc command with the provided arguments.
///
/// The type of the DSC command to execute.
- ///
+ /// The command-line arguments to pass to the DSC command.
/// The result of the DSC command execution.
protected DscExecuteResult ExecuteDscCommand(params string[] args)
where T : Command, new()
diff --git a/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions.Toolkit/ShellHelpers.cs b/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions.Toolkit/ShellHelpers.cs
index 09c5ba2a89..a2b23899e1 100644
--- a/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions.Toolkit/ShellHelpers.cs
+++ b/src/modules/cmdpal/extensionsdk/Microsoft.CommandPalette.Extensions.Toolkit/ShellHelpers.cs
@@ -246,8 +246,8 @@ public static class ShellHelpers
///
/// Mimics Windows Shell behavior to resolve an executable name to a full path.
///
- ///
- ///
+ /// The name of the executable to resolve.
+ /// When this method returns, contains the full path to the executable if found; otherwise, .
/// if the executable was resolved to a full path; otherwise, .
public static bool TryResolveExecutableAsShell(string name, out string fullPath)
{