From 9b5bf6226f0fec10faf537a8c7c4c61199037b90 Mon Sep 17 00:00:00 2001 From: bchavez Date: Wed, 22 Jul 2020 16:11:00 -0700 Subject: [PATCH] Improve XML docs. --- BitArmory.ReCaptcha/ReCaptchaResponse.cs | 4 ++-- HISTORY.md | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/BitArmory.ReCaptcha/ReCaptchaResponse.cs b/BitArmory.ReCaptcha/ReCaptchaResponse.cs index 75c6dab..40980dc 100644 --- a/BitArmory.ReCaptcha/ReCaptchaResponse.cs +++ b/BitArmory.ReCaptcha/ReCaptchaResponse.cs @@ -19,12 +19,12 @@ public class JsonResponse public class ReCaptcha3Response : JsonResponse { /// - /// Whether this request was a valid reCAPTCHA token for your site + /// Whether this request was a valid reCAPTCHA token for your site. /// public bool IsSuccess { get; set; } /// - /// The score for this request (0.0 - 1.0) + /// The score for this request. Value ranges between 0.0 and 1.0; where 0.0 is very likely a bot and 1.0 is very likely a good human interaction. /// public float Score { get; set; } diff --git a/HISTORY.md b/HISTORY.md index 4676223..67d58e5 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,6 @@ +## v5.0.1 +* Improve XML docs. + ## v5.0.0 * Uses SourceLink for F12 navigation in Visual Studio. * The `BitArmory.ReCaptcha.dll` assembly is now signed.