Skip to content

Commit 87522f9

Browse files
committed
Workaround for bad syntax highlighting
1 parent f88d617 commit 87522f9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Data/ArrayBuffer.purs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ type ByteLength = Number
1010
instance showArrayBuffer :: Show ArrayBuffer where
1111
show = showImpl
1212

13-
foreign import showImpl "var showImpl = require('util').inspect;" :: ArrayBuffer -> String
13+
foreign import showImpl
14+
"""
15+
var showImpl = require('util').inspect;
16+
""" :: ArrayBuffer -> String
1417

1518
foreign import create
1619
"""

0 commit comments

Comments
 (0)