aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-21 23:32:53 +0800
committercrupest <crupest@outlook.com>2020-08-21 23:32:53 +0800
commite429b7e0c0425b507b26f95ff3176f9a01f73423 (patch)
treefdd85906c46832a3a3a32cd06b24e76167f383d4 /Timeline/Models
parented324cdcec6d70cc9f93b57b2e3a5a35d3366048 (diff)
downloadtimeline-e429b7e0c0425b507b26f95ff3176f9a01f73423.tar.gz
timeline-e429b7e0c0425b507b26f95ff3176f9a01f73423.tar.bz2
timeline-e429b7e0c0425b507b26f95ff3176f9a01f73423.zip
...
Diffstat (limited to 'Timeline/Models')
-rw-r--r--Timeline/Models/Validation/Validator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Timeline/Models/Validation/Validator.cs b/Timeline/Models/Validation/Validator.cs
index db139448..aef7891c 100644
--- a/Timeline/Models/Validation/Validator.cs
+++ b/Timeline/Models/Validation/Validator.cs
@@ -35,11 +35,11 @@ namespace Timeline.Models.Validation
/// </summary>
/// <typeparam name="T">The type of accepted value.</typeparam>
/// <remarks>
- /// Subclass should override <see cref="DoValidate(T, out string)"/> to do the real validation.
+ /// Subclass should override <see cref="DoValidate(T)"/> to do the real validation.
/// This class will check the nullity and type of value.
/// If value is null, it will pass or fail depending on <see cref="PermitNull"/>.
/// If value is not null and not of type <typeparamref name="T"/>
- /// it will fail and not call <see cref="DoValidate(T, out string)"/>.
+ /// it will fail and not call <see cref="DoValidate(T)"/>.
///
/// <see cref="PermitNull"/> is true by default.
///