Skip to content

Commit

Permalink
Fix typo in variable name: hasExplictValue -> hasExplicitValue (#56981)
Browse files Browse the repository at this point in the history
  • Loading branch information
voroninp authored Jul 25, 2024
1 parent e29ea10 commit d98caa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Http/Routing/src/Template/TemplateBinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,8 @@ private static void Initialize(

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

0 comments on commit d98caa8

Please sign in to comment.