sebastiano.tronto.net

Source files and build scripts for my personal website
git clone https://git.tronto.net/sebastiano.tronto.net
Download | Log | Files | Refs | README

commit 9523934828403b93a29f2c139366a7bcf2ae33c9
parent 958502fb3521c274144ce6cc8294ed155207f7f1
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Fri,  6 Jun 2025 17:17:14 +0200

Fixed typo

Diffstat:
Msrc/blog/2025-06-06-webdev/webdev.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/blog/2025-06-06-webdev/webdev.md b/src/blog/2025-06-06-webdev/webdev.md @@ -567,7 +567,7 @@ in node, becomes: ``` import MyLibrary from "./library.mjs" -var myLibraryInstance = away MyLibrary(); +var myLibraryInstance = await MyLibrary(); const result = myLibraryInstance(6, 7); console.log("The answer is " + result);