Skip to content

Commit

Permalink
correct echo tag function name
Browse files Browse the repository at this point in the history
  • Loading branch information
noelforte committed Sep 25, 2024
1 parent 7e7c75d commit 151bd84
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 151bd84

Please sign in to comment.