Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

package.json now references correct slug #120

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Instruction append

## Reserved Addresses

No linear memory is required for this exercise.
5 changes: 5 additions & 0 deletions exercises/practice/leap/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Instruction append

## Reserved Addresses

No linear memory is required for this exercise.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ describe("matching brackets", () => {
});

test("paired square brackets", () => {
console.log(isPaired("[]"));
expect(isPaired("[]")).toBeTruthy();
});

Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/matching-brackets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"repository": {
"type": "git",
"url": "https://github.com/exercism/wasm",
"directory": "exercises/practice/nucleotide-count"
"directory": "exercises/practice/matching-brackets"
},
"jest": {
"maxWorkers": 1
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/sieve/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@exercism/wasm-acronym",
"name": "@exercism/wasm-sieve",
"description": "Exercism exercises in WebAssembly.",
"author": "Sean McBride",
"type": "module",
Expand All @@ -8,7 +8,7 @@
"repository": {
"type": "git",
"url": "https://github.com/exercism/wasm",
"directory": "exercises/practice/acronym"
"directory": "exercises/practice/sieve"
},
"jest": {
"maxWorkers": 1
Expand Down
Loading