From 36890bd314db5a9e841e572cd0f3479aebea0351 Mon Sep 17 00:00:00 2001 From: jnm2 Date: Wed, 12 Oct 2016 13:06:02 -0400 Subject: [PATCH] Removed erroneous apostrophes --- src/Cake.Common/Build/Bamboo/Data/BambooPlanInfo.cs | 8 ++++---- src/Cake.Common/IO/DirectoryAliases.cs | 8 ++++---- src/Cake.Common/Tools/Roundhouse/RoundhouseSettings.cs | 2 +- src/Cake.Core/IO/FilePath.cs | 4 ++-- src/Cake.Core/Reflection/AssemblyLoader.cs | 2 +- src/Cake.Core/Reflection/IAssemblyLoader.cs | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/Cake.Common/Build/Bamboo/Data/BambooPlanInfo.cs b/src/Cake.Common/Build/Bamboo/Data/BambooPlanInfo.cs index a13aa5eaac..e182eaf5d0 100644 --- a/src/Cake.Common/Build/Bamboo/Data/BambooPlanInfo.cs +++ b/src/Cake.Common/Build/Bamboo/Data/BambooPlanInfo.cs @@ -23,7 +23,7 @@ public sealed class BambooPlanInfo : BambooInfo /// Gets the Bamboo short Plan Name /// /// - /// The Bamboo Plan Name in it's short form. + /// The Bamboo Plan Name in its short form. /// public string ShortPlanName => GetEnvironmentString("bamboo_shortPlanName"); @@ -39,7 +39,7 @@ public sealed class BambooPlanInfo : BambooInfo /// Gets the Bamboo short Plan Key. /// /// - /// The Bamboo Plan Key in it's hort form. + /// The Bamboo Plan Key in its short form. /// public string ShortPlanKey => GetEnvironmentString("bamboo_shortPlanKey"); @@ -47,7 +47,7 @@ public sealed class BambooPlanInfo : BambooInfo /// Gets the Bamboo short job key. /// /// - /// The Bamboo job key in it's short form. + /// The Bamboo job key in its short form. /// public string ShortJobKey => GetEnvironmentString("bamboo_shortJobKey"); @@ -55,7 +55,7 @@ public sealed class BambooPlanInfo : BambooInfo /// Gets the Bamboo short Job Name. /// /// - /// The Bamboo Job Name in it's short form. + /// The Bamboo Job Name in its short form. /// public string ShortJobName => GetEnvironmentString("bamboo_shortJobName"); diff --git a/src/Cake.Common/IO/DirectoryAliases.cs b/src/Cake.Common/IO/DirectoryAliases.cs index 8f7fa95608..2cedc6046e 100644 --- a/src/Cake.Common/IO/DirectoryAliases.cs +++ b/src/Cake.Common/IO/DirectoryAliases.cs @@ -131,7 +131,7 @@ public static void DeleteDirectory(this ICakeContext context, DirectoryPath path /// /// 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. /// /// /// @@ -155,7 +155,7 @@ public static void CleanDirectories(this ICakeContext context, string pattern) /// /// 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. /// /// /// @@ -184,7 +184,7 @@ public static void CleanDirectories(this ICakeContext context, string pattern, F /// /// 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. /// /// /// @@ -210,7 +210,7 @@ public static void CleanDirectories(this ICakeContext context, IEnumerable /// 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. /// /// /// diff --git a/src/Cake.Common/Tools/Roundhouse/RoundhouseSettings.cs b/src/Cake.Common/Tools/Roundhouse/RoundhouseSettings.cs index 9aa6f9a25e..7f409356aa 100644 --- a/src/Cake.Common/Tools/Roundhouse/RoundhouseSettings.cs +++ b/src/Cake.Common/Tools/Roundhouse/RoundhouseSettings.cs @@ -199,7 +199,7 @@ public sealed class RoundhouseSettings : ToolSettings /// Gets or sets the schema name to use instead of [RoundhousE]. /// /// - /// The schema where RH stores it's tables. + /// The schema where RH stores its tables. /// public string SchemaName { get; set; } diff --git a/src/Cake.Core/IO/FilePath.cs b/src/Cake.Core/IO/FilePath.cs index 93f369d6e6..fa6a3d2534 100644 --- a/src/Cake.Core/IO/FilePath.cs +++ b/src/Cake.Core/IO/FilePath.cs @@ -53,9 +53,9 @@ public FilePath GetFilename() } /// - /// Gets the filename without it's extension. + /// Gets the filename without its extension. /// - /// The filename without it's extension. + /// The filename without its extension. public FilePath GetFilenameWithoutExtension() { var filename = System.IO.Path.GetFileNameWithoutExtension(FullPath); diff --git a/src/Cake.Core/Reflection/AssemblyLoader.cs b/src/Cake.Core/Reflection/AssemblyLoader.cs index 0626234b04..e530d79063 100644 --- a/src/Cake.Core/Reflection/AssemblyLoader.cs +++ b/src/Cake.Core/Reflection/AssemblyLoader.cs @@ -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)); } diff --git a/src/Cake.Core/Reflection/IAssemblyLoader.cs b/src/Cake.Core/Reflection/IAssemblyLoader.cs index 626ce75565..871e56722e 100644 --- a/src/Cake.Core/Reflection/IAssemblyLoader.cs +++ b/src/Cake.Core/Reflection/IAssemblyLoader.cs @@ -13,7 +13,7 @@ namespace Cake.Core.Reflection public interface IAssemblyLoader { /// - /// Loads the specified assembly from it's assembly name. + /// Loads the specified assembly from its assembly name. /// /// The assembly name. /// The loaded assembly.