Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sentences which end with double full stop #2925

Merged
merged 1 commit into from
Nov 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public interface IAzurePipelinesCommands
/// <summary>
/// Create an artifact link, such as a file or folder path or a version control path.
/// </summary>
/// <param name="name">The artifact name..</param>
/// <param name="name">The artifact name.</param>
/// <param name="type">The artifact type.</param>
/// <param name="location">The link path or value.</param>
void LinkArtifact(string name, AzurePipelinesArtifactType type, string location);
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common/Build/ContinuaCI/IContinuaCIProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public interface IContinuaCIProvider
/// </summary>
/// <param name="name">Name of the variable to set.</param>
/// <param name="value">Value to assign to the variable.</param>
/// <param name="skipIfNotDefined">Set to 'true' to prevent the build failing if the variable has not been defined for the configuration..</param>
/// <param name="skipIfNotDefined">Set to 'true' to prevent the build failing if the variable has not been defined for the configuration.</param>
void SetVariable(string name, string value, bool skipIfNotDefined = true);

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common/Build/TFBuild/ITFBuildCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public interface ITFBuildCommands
/// <summary>
/// Create an artifact link, such as a file or folder path or a version control path.
/// </summary>
/// <param name="name">The artifact name..</param>
/// <param name="name">The artifact name.</param>
/// <param name="type">The artifact type.</param>
/// <param name="location">The link path or value.</param>
void LinkArtifact(string name, TFBuildArtifactType type, string location);
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common/Build/TravisCI/Data/TravisCIJobInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Cake.Common.Build.TravisCI.Data
public sealed class TravisCIJobInfo : TravisCIInfo
{
/// <summary>
/// Gets the job identifier for the current job..
/// Gets the job identifier for the current job.
/// </summary>
/// <value>
/// The job identifier.
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common/IO/GlobbingAliases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static FilePathCollection GetFiles(this ICakeContext context, GlobPattern
/// </example>
/// <param name="context">The context.</param>
/// <param name="pattern">The glob pattern to match.</param>
/// <param name="settings">The globber settings..</param>
/// <param name="settings">The globber settings.</param>
/// <returns>A <see cref="FilePathCollection" />.</returns>
[CakeMethodAlias]
[CakeAliasCategory("Files")]
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common/Tools/DotNetCore/DotNetCoreVerbosity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Cake.Common.Tools.DotNetCore
{
/// <summary>
/// Contains the verbosity of logging to use..
/// Contains the verbosity of logging to use.
/// </summary>
public enum DotNetCoreVerbosity
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public sealed class GitReleaseManagerCreateSettings : GitReleaseManagerSettings
public string Assets { get; set; }

/// <summary>
/// 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.
/// </summary>
public string TargetCommitish { get; set; }
}
Expand Down
4 changes: 2 additions & 2 deletions src/Cake.Common/Tools/InspectCode/InspectCodeSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Core/Extensions/ProcessArgumentListExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ public static bool IsNullOrEmpty(this ProcessArgumentBuilder builder)
/// <summary>
/// Copies all the arguments of the source <see cref="ProcessArgumentBuilder"/> to target <see cref="ProcessArgumentBuilder"/>.
/// </summary>
/// <param name="source">The argument builder to copy from..</param>
/// <param name="source">The argument builder to copy from.</param>
/// <param name="target">The argument builder to copy to.</param>
public static void CopyTo(this ProcessArgumentBuilder source, ProcessArgumentBuilder target)
{
Expand Down