aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter5_advanced_features/lesson04_externals
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/chapter5_advanced_features/lesson04_externals')
-rw-r--r--src/content/chapter5_advanced_features/lesson04_externals/code.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/chapter5_advanced_features/lesson04_externals/code.gleam b/src/content/chapter5_advanced_features/lesson04_externals/code.gleam
index ade2c54..1101b82 100644
--- a/src/content/chapter5_advanced_features/lesson04_externals/code.gleam
+++ b/src/content/chapter5_advanced_features/lesson04_externals/code.gleam
@@ -8,7 +8,7 @@ pub type DateTime
pub fn now() -> DateTime
// The `now` function in `./my_package_ffi.mjs` looks like this:
-// external function now() {
+// export function now() {
// return new Date();
// }