Skip to content

Commit

Permalink
Merge pull request #74 from noelforte/main
Browse files Browse the repository at this point in the history
Typo Fix: correct echo tag function name
  • Loading branch information
oscarotero authored Sep 25, 2024
2 parents 7e7c75d + 151bd84 commit 6bf0fb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/echo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import type { Environment, Plugin } from "../src/environment.ts";

export default function (): Plugin {
return (env: Environment) => {
env.tags.push(setTag);
env.tags.push(echoTag);
};
}

function setTag(
function echoTag(
env: Environment,
code: string,
output: string,
Expand Down

0 comments on commit 6bf0fb8

Please sign in to comment.