From 2bd018b7f1522260ff0bbe98214a94aaeb32b9f1 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Thu, 19 Apr 2018 15:54:27 -0400 Subject: [PATCH] docs: Tidying comments --- ICD.Common.Utils/Extensions/AssemblyExtensions.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ICD.Common.Utils/Extensions/AssemblyExtensions.cs b/ICD.Common.Utils/Extensions/AssemblyExtensions.cs index 0cb0615..373d344 100644 --- a/ICD.Common.Utils/Extensions/AssemblyExtensions.cs +++ b/ICD.Common.Utils/Extensions/AssemblyExtensions.cs @@ -12,7 +12,7 @@ namespace ICD.Common.Utils.Extensions public static class AssemblyExtensions { /// - /// Gets the path for the given assembly. Returns null if the assembly can not be found on disk. + /// Gets the path for the assembly. Returns null if the assembly can not be found on disk. /// /// /// @@ -45,10 +45,11 @@ namespace ICD.Common.Utils.Extensions } /// - /// Gets the creation date of the given assembly. + /// Gets the creation date of the assembly. /// /// /// + [PublicAPI] public static DateTime GetCreationTime(this Assembly extends) { if (extends == null) @@ -59,10 +60,11 @@ namespace ICD.Common.Utils.Extensions } /// - /// Gets the informational version for the given assembly. + /// Gets the informational version for the assembly. /// /// /// + [PublicAPI] public static string GetInformationalVersion(this Assembly extends) { if (extends == null)