Skip to content

Commit c92bfe8

Browse files
authored
Merge pull request #55 from cheonjaeung/docs
Fix parameter name in span documentation
2 parents 9487648 + 43db892 commit c92bfe8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/span.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ BoxGrid(
1212
rows = SimpleGridCells.Fixed(3),
1313
columns = SimpleGridCells.Fixed(3)
1414
) {
15-
Item(modifier = Modifier.span { BoxGridItemSpan(rowSpan = 2, columnSpan = 1) })
15+
Item(modifier = Modifier.span { BoxGridItemSpan(row = 2) })
1616
Item(modifier = Modifier.column(2))
17-
Item(modifier = Modifier.row(1).column(1).span { BoxGridItemSpan(rowSpan = 1, columnSpan = 2) })
18-
Item(modifier = Modifier.row(2)span { BoxGridItemSpan(rowSpan = 1, columnSpan = 2) })
17+
Item(modifier = Modifier.row(1).column(1).span { BoxGridItemSpan(column = 2) })
18+
Item(modifier = Modifier.row(2)span { BoxGridItemSpan(column = 2) })
1919
}
2020
```
2121

0 commit comments

Comments
 (0)