We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e29ea10 commit d98caa8Copy full SHA for d98caa8
src/Http/Routing/src/Template/TemplateBinder.cs
@@ -360,8 +360,8 @@ private static void Initialize(
360
361
// We use a sentinel value here so we can track the different between omission and explicit null.
362
// 'real null' means that the value was omitted.
363
- var hasExplictValue = value != null;
364
- if (hasExplictValue)
+ var hasExplicitValue = value != null;
+ if (hasExplicitValue)
365
{
366
// If there is a non-parameterized value in the route and there is a
367
// new value for it and it doesn't match, this route won't match.
0 commit comments