Skip to content

Commit

Permalink
Merge pull request #16 from a-tarasyuk/fix/add-missing-commas
Browse files Browse the repository at this point in the history
fix: add missing commas in the examples
  • Loading branch information
pzuraq committed Jan 17, 2024
2 parents 6623368 + 57d0d08 commit 4d8fb62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function meta(key, value) {
};
}

@meta('a' 'x')
@meta('a', 'x')
class C {
@meta('b', 'y')
m() {}
Expand All @@ -95,7 +95,7 @@ function meta(key, value) {
};
}

@meta('a' 'x')
@meta('a', 'x')
class C {
@meta('b', 'y')
m() {}
Expand Down Expand Up @@ -157,7 +157,7 @@ function meta(key, value) {
};
}

@meta('a' 'x')
@meta('a', 'x')
class C {
@meta('b', 'y')
m() {}
Expand Down

0 comments on commit 4d8fb62

Please sign in to comment.