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

Removed erroneous apostrophes #1278

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions src/Cake.Common/Build/Bamboo/Data/BambooPlanInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public sealed class BambooPlanInfo : BambooInfo
/// Gets the Bamboo short Plan Name
/// </summary>
/// <value>
/// The Bamboo Plan Name in it's short form.
/// The Bamboo Plan Name in its short form.
/// </value>
public string ShortPlanName => GetEnvironmentString("bamboo_shortPlanName");

Expand All @@ -39,23 +39,23 @@ public sealed class BambooPlanInfo : BambooInfo
/// Gets the Bamboo short Plan Key.
/// </summary>
/// <value>
/// The Bamboo Plan Key in it's hort form.
/// The Bamboo Plan Key in its short form.
/// </value>
public string ShortPlanKey => GetEnvironmentString("bamboo_shortPlanKey");

/// <summary>
/// Gets the Bamboo short job key.
/// </summary>
/// <value>
/// The Bamboo job key in it's short form.
/// The Bamboo job key in its short form.
/// </value>
public string ShortJobKey => GetEnvironmentString("bamboo_shortJobKey");

/// <summary>
/// Gets the Bamboo short Job Name.
/// </summary>
/// <value>
/// The Bamboo Job Name in it's short form.
/// The Bamboo Job Name in its short form.
/// </value>
public string ShortJobName => GetEnvironmentString("bamboo_shortJobName");

Expand Down
8 changes: 4 additions & 4 deletions src/Cake.Common/IO/DirectoryAliases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public static void DeleteDirectory(this ICakeContext context, DirectoryPath path

/// <summary>
/// Cleans the directories matching the specified pattern.
/// Cleaning the directory will remove all it's content but not the directory itself.
/// Cleaning the directory will remove all its content but not the directory itself.
/// </summary>
/// <example>
/// <code>
Expand All @@ -155,7 +155,7 @@ public static void CleanDirectories(this ICakeContext context, string pattern)

/// <summary>
/// Cleans the directories matching the specified pattern.
/// Cleaning the directory will remove all it's content but not the directory itself.
/// Cleaning the directory will remove all its content but not the directory itself.
/// </summary>
/// <example>
/// <code>
Expand Down Expand Up @@ -184,7 +184,7 @@ public static void CleanDirectories(this ICakeContext context, string pattern, F

/// <summary>
/// Cleans the specified directories.
/// Cleaning a directory will remove all it's content but not the directory itself.
/// Cleaning a directory will remove all its content but not the directory itself.
/// </summary>
/// <example>
/// <code>
Expand All @@ -210,7 +210,7 @@ public static void CleanDirectories(this ICakeContext context, IEnumerable<Direc

/// <summary>
/// Cleans the specified directories.
/// Cleaning a directory will remove all it's content but not the directory itself.
/// Cleaning a directory will remove all its content but not the directory itself.
/// </summary>
/// <example>
/// <code>
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common/Tools/Roundhouse/RoundhouseSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public sealed class RoundhouseSettings : ToolSettings
/// Gets or sets the schema name to use instead of [RoundhousE].
/// </summary>
/// <value>
/// The schema where RH stores it's tables.
/// The schema where RH stores its tables.
/// </value>
public string SchemaName { get; set; }

Expand Down
4 changes: 2 additions & 2 deletions src/Cake.Core/IO/FilePath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ public FilePath GetFilename()
}

/// <summary>
/// Gets the filename without it's extension.
/// Gets the filename without its extension.
/// </summary>
/// <returns>The filename without it's extension.</returns>
/// <returns>The filename without its extension.</returns>
public FilePath GetFilenameWithoutExtension()
{
var filename = System.IO.Path.GetFileNameWithoutExtension(FullPath);
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Core/Reflection/AssemblyLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public Assembly Load(FilePath path)

if (path.Segments.Length == 1 && !_fileSystem.Exist(path))
{
// Not a valid path. Try loading it by it's name.
// Not a valid path. Try loading it by its name.
return Assembly.Load(new AssemblyName(path.FullPath));
}

Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Core/Reflection/IAssemblyLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Cake.Core.Reflection
public interface IAssemblyLoader
{
/// <summary>
/// Loads the specified assembly from it's assembly name.
/// Loads the specified assembly from its assembly name.
/// </summary>
/// <param name="assemblyName">The assembly name.</param>
/// <returns>The loaded assembly.</returns>
Expand Down