Fixed spelling mistakes in comments (#13833)

This commit is contained in:
Sammy Rosso
2024-04-01 13:12:20 +02:00
committed by GitHub
parent 38f208d70d
commit 2b4bb5d890
33 changed files with 55 additions and 55 deletions

View File

@@ -24,7 +24,7 @@ type Node[T any] struct {
next *Node[T]
}
// Copy returns a copy of the origina list.
// Copy returns a copy of the original list.
func (l *List[T]) Copy() *List[T] {
if l == nil {
return nil