We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc816c3 commit 350ad01Copy full SHA for 350ad01
misc_docs/syntax/decorator_send_pipe.mdx
@@ -25,7 +25,7 @@ let el = getElementById("myId", doc)
25
// Bind to a method on an array
26
@bs.send.pipe(: array<'a>)
27
external fillInPlace: 'a => array<'a> = "fill"
28
-let a = fillInPlace2([1, 2, 3], 99)
+let a = fillInPlace(99, [1, 2, 3])
29
```
30
31
```js
0 commit comments