Skip to content

Commit 70e7811

Browse files
committed
Remove incorrect indent in structural-types.md
1 parent c57ce50 commit 70e7811

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_docs/reference/changed-features/structural-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ a database layer, and therefore would not be a concern of the end user.
8484
Besides `selectDynamic`, a `Selectable` class sometimes also defines a method `applyDynamic`. This can then be used to translate function calls of structural members. So, if `a` is an instance of `Selectable`, a structural call like `a.f(b, c)` would translate to
8585

8686
```scala
87-
a.applyDynamic("f")(b, c)
87+
a.applyDynamic("f")(b, c)
8888
```
8989

9090
## Using Java Reflection

0 commit comments

Comments
 (0)