Fix typo in lectures/08-generics/lecture.slide

This commit is contained in:
Anton Rigin 2022-04-07 16:01:48 +00:00 committed by Arseny Balobanov
parent 80e66451e6
commit 276d68c3bf

View file

@ -243,7 +243,7 @@ what we could do
func (p Point) String() string { return "" } func (p Point) String() string { return "" }
We'd like to write function scale and Println We'd like to write function ScaleAndPrint
func ScaleAndPrint(p Point) { func ScaleAndPrint(p Point) {
r := Scale(p, 2) r := Scale(p, 2)