Skip to content

Commit fa420fe

Browse files
committed
Fix typo
1 parent b0e548e commit fa420fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docs/reference/implicit-function-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ with the previous definitions,
2828

2929
def g(arg: Contextual[Int]) = ...
3030

31-
g(22) // is expanded to g { implicit ctx => 22 }
31+
g(22) // is expanded to g { implicit ctx => 22 }
3232

33-
g(f) // is expanded to g { implicit ctx => f(2)(ctx) }
33+
g(f(2)) // is expanded to g { implicit ctx => f(2)(ctx) }
3434

3535
g(implicit ctx => f(22)(ctx)) // is left as it is
3636

0 commit comments

Comments
 (0)