errors: correct spelling

This commit is contained in:
Vasili Revelas 2023-03-15 11:09:47 +00:00
parent 71f82df19a
commit 22cfd6382c
1 changed files with 2 additions and 2 deletions

View File

@ -1328,10 +1328,10 @@ const (
NotAGenericType
// WrongTypeArgCount occurs when a type or function is instantiated with an
// incorrent number of type arguments, including when a generic type or
// incorrect number of type arguments, including when a generic type or
// function is used without instantiation.
//
// Errors inolving failed type inference are assigned other error codes.
// Errors involving failed type inference are assigned other error codes.
//
// Example:
// type T[p any] int