Skip to content

Commit

Permalink
Change: fix always_ff snippet containing extra "}"
Browse files Browse the repository at this point in the history
The always_ff snippet had an extra '}' after the posedge. This caused syntax error in simulators. I removed it since it does not seem to be useful.
  • Loading branch information
mrvkino authored Mar 17, 2018
1 parent dc481bc commit e86f702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snippets/systemverilog.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"prefix": "always_ff",
"description": "Snippet for an always_comb block",
"body": [
"always_ff @(posedge ${1:ck}, posedge ${2:arst})} begin",
"always_ff @(posedge ${1:ck}, posedge ${2:arst}) begin",
"\t$0",
"end"
]
Expand Down

0 comments on commit e86f702

Please sign in to comment.