Skip to content

Commit 1d849a7

Browse files
authored
remove random ; symbol from splitProps docs (#1260)
1 parent 31c70f6 commit 1d849a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/reference/reactive-utilities/split-props.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Because `splitProps` takes any number of arrays, we can split a props object as
3737
Let's say a component was passed six props:
3838

3939
```tsx
40-
;<MyComponent a={1} b={2} c={3} d={4} e={5} foo="bar" />
40+
<MyComponent a={1} b={2} c={3} d={4} e={5} foo="bar" />
4141
// ...
4242

4343
function MyComponent(props) {

0 commit comments

Comments
 (0)