From 15120b69fa006551e3331f95290dbfb8cf11961d Mon Sep 17 00:00:00 2001 From: hangy Date: Wed, 27 Oct 2021 13:29:03 +0200 Subject: [PATCH] docs: Document the 'heading' parameter to fix warnings during CI build --- src/Humanizer/HeadingExtensions.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Humanizer/HeadingExtensions.cs b/src/Humanizer/HeadingExtensions.cs index 5a1621b32..b8843da1c 100644 --- a/src/Humanizer/HeadingExtensions.cs +++ b/src/Humanizer/HeadingExtensions.cs @@ -71,6 +71,7 @@ public static char ToHeadingArrow(this double heading) /// /// Returns a heading based on the short textual representation of the heading. /// + /// The short textual representation of a heading /// The heading. -1 if the heading could not be parsed. public static double FromAbbreviatedHeading(this string heading) { @@ -80,6 +81,7 @@ public static double FromAbbreviatedHeading(this string heading) /// /// Returns a heading based on the short textual representation of the heading. /// + /// The short textual representation of a heading /// The culture of the heading /// The heading. -1 if the heading could not be parsed. public static double FromAbbreviatedHeading(this string heading, CultureInfo culture = null)