From 25eda6c3ecf2153aad4af0384e027b33df201054 Mon Sep 17 00:00:00 2001 From: TnvMadhav Date: Sun, 22 Dec 2024 12:05:58 +0530 Subject: [PATCH] fix: Typo in npm/npm-publish-github-action The acronym for `Immediately Invoked Function Expression` was incorrect. --- npm/npm-publish-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/npm-publish-github-actions.md b/npm/npm-publish-github-actions.md index 4ca9101ee..f1b94696f 100644 --- a/npm/npm-publish-github-actions.md +++ b/npm/npm-publish-github-actions.md @@ -51,7 +51,7 @@ Really the three most important keys here are `"name"`, which needs to be a uniq All that's needed now is that `index.js` file - and optionally the `README.md` and `LICENSE` files if we want to include them in the package. The `README.md` ends up displayed on the NPM listing page so it's worth including. -Here's my [index.js](https://github.com/simonw/prompts-js/blob/main/index.js) file. It starts and ends like this (an [IFFE](https://developer.mozilla.org/en-US/docs/Glossary/IIFE)): +Here's my [index.js](https://github.com/simonw/prompts-js/blob/main/index.js) file. It starts and ends like this (an [IIFE](https://developer.mozilla.org/en-US/docs/Glossary/IIFE)): ```javascript const Prompts = (function () {