Skip to content

Commit d98caa8

Browse files
authored
Fix typo in variable name: hasExplictValue -> hasExplicitValue (#56981)
1 parent e29ea10 commit d98caa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Http/Routing/src/Template/TemplateBinder.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,8 @@ private static void Initialize(
360360

361361
// We use a sentinel value here so we can track the different between omission and explicit null.
362362
// 'real null' means that the value was omitted.
363-
var hasExplictValue = value != null;
364-
if (hasExplictValue)
363+
var hasExplicitValue = value != null;
364+
if (hasExplicitValue)
365365
{
366366
// If there is a non-parameterized value in the route and there is a
367367
// new value for it and it doesn't match, this route won't match.

0 commit comments

Comments
 (0)