Skip to content

Commit 47dfc73

Browse files
authored
fix: Fix typo.
1 parent 28a3108 commit 47dfc73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cons/cons_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func TestCar(t *testing.T) {
1414
}
1515

1616
func TestCdr(t *testing.T) {
17-
car := cons.Cdr(cons.Cons(23, 42))
17+
cdr := cons.Cdr(cons.Cons(23, 42))
1818

19-
assert.Equal(t, 42, car)
19+
assert.Equal(t, 42, cdr)
2020
}

0 commit comments

Comments
 (0)