From 80c3128e8f4c466eba00190a51f532459782b0e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lehoczky=20Zolt=C3=A1n?= Date: Sat, 30 Mar 2024 18:32:34 +0100 Subject: [PATCH] docs: fix jsdoc example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09d8341f..87c34b63 100644 --- a/README.md +++ b/README.md @@ -437,7 +437,7 @@ $ npm i -D @types/github-script@github:actions/github-script And then add the `jsDoc` declaration to your script like this: ```js // @ts-check -/** @param {import('@types/github-script').AsyncFunctionArguments} AsyncFunctionArguments */ +/** @param {import('github-script').AsyncFunctionArguments} AsyncFunctionArguments */ export default async ({ core, context }) => { core.debug("Running something at the moment"); return context.actor;