Skip to content

Commit

Permalink
chore: fix typo in CallbackExtensions.cs (#4301)
Browse files Browse the repository at this point in the history
specificy -> specificity



---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
  • Loading branch information
eltociear authored Nov 14, 2023
1 parent a2ab316 commit 9450e62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ out object? result
return null;
}

throw new ArgumentException("Callback does not specificy a method, getter, or setter to invoke");
throw new ArgumentException("Callback does not specify a method, getter, or setter to invoke");
}

private static CallbackResult? InvokeMethod(InvokeRequest request, IReferenceMap referenceMap)
Expand Down Expand Up @@ -251,4 +251,4 @@ private CallbackResult(TypeReference type, bool isOptional, object? value) : bas

public object? Value { get; }
}
}
}

0 comments on commit 9450e62

Please sign in to comment.