Skip to content

Commit 2394bf2

Browse files
committed
Doesn't the JSX parser accept single quotes?
1 parent e71f853 commit 2394bf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_jsx.re

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ let svg = (
338338
),
339339
(
340340
"fill_opacity percentage, rect",
341-
[<rect x=1 y='2' width=3 height='4' fill_opacity='50%' />],
341+
[<rect x=1 y="2" width=3 height="4" fill_opacity="50%" />],
342342
[rect(~a=[a_cx((1., None)), a_cy((2., None)), a_width((3., None)), a_height((4., None)), a_fill_opacity(0.5)], [])],
343343
),
344344
(

0 commit comments

Comments
 (0)