aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/Validation
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
commitc79352d27df2506d2ab214f61d60e503a1d7675a (patch)
treea3831200a2fca0b5a4a46287b38a02a468ab371d /Timeline/Models/Validation
parentbe532c56158362701a4d5704e995c743ff8b9804 (diff)
downloadtimeline-c79352d27df2506d2ab214f61d60e503a1d7675a.tar.gz
timeline-c79352d27df2506d2ab214f61d60e503a1d7675a.tar.bz2
timeline-c79352d27df2506d2ab214f61d60e503a1d7675a.zip
...
Diffstat (limited to 'Timeline/Models/Validation')
-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.
///