Skip to content

Commit

Permalink
fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
flyx committed Dec 9, 2023
1 parent 4e84186 commit c7e5a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yaml/native.nim
Original file line number Diff line number Diff line change
Expand Up @@ -1456,7 +1456,7 @@ proc constructChild*[T](
let item = ctx.input.peek()
when isImplicitVariantObject(T):
const checkRes = canBeImplicit(T)
when not len(checkRes) > 0:
when len(checkRes) > 0:
{. fatal: "cannot be marked as implicit: " & checkRes .}
var possibleTags = newSeq[Tag]()
case item.kind
Expand Down

0 comments on commit c7e5a8a

Please sign in to comment.