Skip to content

Commit 84e5574

Browse files
authored
Updated CommonJS to ES Modules to reflect Purescript 0.15 update. (#448)
1 parent 581caaa commit 84e5574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

language/FFI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ When importing values from the FFI, the values themselves are defined in separat
1616
```javascript
1717
// src/Math.js
1818
"use strict";
19-
exports.pow = function(x) {
19+
export function pow(x) {
2020
return function(y) {
2121
return Math.pow(x,y);
2222
};

0 commit comments

Comments
 (0)