1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-09 09:34:49 +09:00

Fix typo in Framework Design Guidelines - Digest (#38307)

This commit is contained in:
Zoltán Lehóczky 2020-06-24 02:04:00 +02:00 committed by GitHub
parent 09f1fa0e3d
commit 54de085c2c
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -227,7 +227,7 @@ generic collections are only supported in the Framework version 2.0 and above.
✓ **DO** prefer throwing existing common general purpose exceptions like
`ArgumentNullException`, `ArgumentOutOfRangeException`,
`InvalidOperationException` instead of defining custom exceptions. throw the
`InvalidOperationException` instead of defining custom exceptions. Throw the
most specific exception possible.
✓ **DO** ensure that exception messages are clear and actionable.