diff --git a/src/Cake.Common/Build/AzurePipelines/IAzurePipelinesCommands.cs b/src/Cake.Common/Build/AzurePipelines/IAzurePipelinesCommands.cs
index 4ba6d2af00..97e5864c1c 100644
--- a/src/Cake.Common/Build/AzurePipelines/IAzurePipelinesCommands.cs
+++ b/src/Cake.Common/Build/AzurePipelines/IAzurePipelinesCommands.cs
@@ -129,7 +129,7 @@ public interface IAzurePipelinesCommands
///
/// Create an artifact link, such as a file or folder path or a version control path.
///
- /// The artifact name..
+ /// The artifact name.
/// The artifact type.
/// The link path or value.
void LinkArtifact(string name, AzurePipelinesArtifactType type, string location);
diff --git a/src/Cake.Common/Build/ContinuaCI/IContinuaCIProvider.cs b/src/Cake.Common/Build/ContinuaCI/IContinuaCIProvider.cs
index 3f420c943c..5ea9aa98ee 100644
--- a/src/Cake.Common/Build/ContinuaCI/IContinuaCIProvider.cs
+++ b/src/Cake.Common/Build/ContinuaCI/IContinuaCIProvider.cs
@@ -35,7 +35,7 @@ public interface IContinuaCIProvider
///
/// Name of the variable to set.
/// Value to assign to the variable.
- /// Set to 'true' to prevent the build failing if the variable has not been defined for the configuration..
+ /// Set to 'true' to prevent the build failing if the variable has not been defined for the configuration.
void SetVariable(string name, string value, bool skipIfNotDefined = true);
///
diff --git a/src/Cake.Common/Build/TFBuild/ITFBuildCommands.cs b/src/Cake.Common/Build/TFBuild/ITFBuildCommands.cs
index 099cd5b3d5..8ef131d0e2 100644
--- a/src/Cake.Common/Build/TFBuild/ITFBuildCommands.cs
+++ b/src/Cake.Common/Build/TFBuild/ITFBuildCommands.cs
@@ -129,7 +129,7 @@ public interface ITFBuildCommands
///
/// Create an artifact link, such as a file or folder path or a version control path.
///
- /// The artifact name..
+ /// The artifact name.
/// The artifact type.
/// The link path or value.
void LinkArtifact(string name, TFBuildArtifactType type, string location);
diff --git a/src/Cake.Common/Build/TravisCI/Data/TravisCIJobInfo.cs b/src/Cake.Common/Build/TravisCI/Data/TravisCIJobInfo.cs
index d66ec4146d..6ba440c9b7 100644
--- a/src/Cake.Common/Build/TravisCI/Data/TravisCIJobInfo.cs
+++ b/src/Cake.Common/Build/TravisCI/Data/TravisCIJobInfo.cs
@@ -12,7 +12,7 @@ namespace Cake.Common.Build.TravisCI.Data
public sealed class TravisCIJobInfo : TravisCIInfo
{
///
- /// Gets the job identifier for the current job..
+ /// Gets the job identifier for the current job.
///
///
/// The job identifier.
diff --git a/src/Cake.Common/IO/GlobbingAliases.cs b/src/Cake.Common/IO/GlobbingAliases.cs
index 20ba938dd1..adbf38c788 100644
--- a/src/Cake.Common/IO/GlobbingAliases.cs
+++ b/src/Cake.Common/IO/GlobbingAliases.cs
@@ -61,7 +61,7 @@ public static FilePathCollection GetFiles(this ICakeContext context, GlobPattern
///
/// The context.
/// The glob pattern to match.
- /// The globber settings..
+ /// The globber settings.
/// A .
[CakeMethodAlias]
[CakeAliasCategory("Files")]
diff --git a/src/Cake.Common/Tools/DotNetCore/DotNetCoreVerbosity.cs b/src/Cake.Common/Tools/DotNetCore/DotNetCoreVerbosity.cs
index 4f9b26302f..c37c459e85 100644
--- a/src/Cake.Common/Tools/DotNetCore/DotNetCoreVerbosity.cs
+++ b/src/Cake.Common/Tools/DotNetCore/DotNetCoreVerbosity.cs
@@ -5,7 +5,7 @@
namespace Cake.Common.Tools.DotNetCore
{
///
- /// Contains the verbosity of logging to use..
+ /// Contains the verbosity of logging to use.
///
public enum DotNetCoreVerbosity
{
diff --git a/src/Cake.Common/Tools/GitReleaseManager/Create/GitReleaseManagerCreateSettings.cs b/src/Cake.Common/Tools/GitReleaseManager/Create/GitReleaseManagerCreateSettings.cs
index c647b477be..1d21e11737 100644
--- a/src/Cake.Common/Tools/GitReleaseManager/Create/GitReleaseManagerCreateSettings.cs
+++ b/src/Cake.Common/Tools/GitReleaseManager/Create/GitReleaseManagerCreateSettings.cs
@@ -37,7 +37,7 @@ public sealed class GitReleaseManagerCreateSettings : GitReleaseManagerSettings
public string Assets { get; set; }
///
- /// Gets or sets the commit to tag. Can be a branch or SHA. Defaults to repository's default branch..
+ /// Gets or sets the commit to tag. Can be a branch or SHA. Defaults to repository's default branch.
///
public string TargetCommitish { get; set; }
}
diff --git a/src/Cake.Common/Tools/InspectCode/InspectCodeSettings.cs b/src/Cake.Common/Tools/InspectCode/InspectCodeSettings.cs
index 2bad417300..175fdeba8f 100644
--- a/src/Cake.Common/Tools/InspectCode/InspectCodeSettings.cs
+++ b/src/Cake.Common/Tools/InspectCode/InspectCodeSettings.cs
@@ -18,8 +18,8 @@ public sealed class InspectCodeSettings : ToolSettings
Not (yet) supported options:
- /toolset MsBuild toolset version. Highest available is used by default. Example: /toolset=12.0.
- /dumpIssuesTypes (/it) Dump issues types (default: False).
- - /targets-for-references MSBuild targets. These targets will be executed to get referenced assemblies of projects..
- - /targets-for-items MSBuild targets. These targets will be executed to get other items (e.g. Compile item) of projects..
+ - /targets-for-references MSBuild targets. These targets will be executed to get referenced assemblies of projects.
+ - /targets-for-items MSBuild targets. These targets will be executed to get other items (e.g. Compile item) of projects.
*/
///
diff --git a/src/Cake.Core/Extensions/ProcessArgumentListExtensions.cs b/src/Cake.Core/Extensions/ProcessArgumentListExtensions.cs
index 38c249340f..d21d79351b 100644
--- a/src/Cake.Core/Extensions/ProcessArgumentListExtensions.cs
+++ b/src/Cake.Core/Extensions/ProcessArgumentListExtensions.cs
@@ -685,7 +685,7 @@ public static bool IsNullOrEmpty(this ProcessArgumentBuilder builder)
///
/// Copies all the arguments of the source to target .
///
- /// The argument builder to copy from..
+ /// The argument builder to copy from.
/// The argument builder to copy to.
public static void CopyTo(this ProcessArgumentBuilder source, ProcessArgumentBuilder target)
{