Skip to content

Commit

Permalink
Fix typo in parsers.h (WebAssembly#7032)
Browse files Browse the repository at this point in the history
Corrected `maybeRefType` declaration to `maybeReftype`.
  • Loading branch information
aupreti authored Oct 25, 2024
1 parent de421db commit d407cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/parsers.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ using namespace std::string_view_literals;
template<typename Ctx>
Result<typename Ctx::HeapTypeT> absheaptype(Ctx&, Shareability);
template<typename Ctx> Result<typename Ctx::HeapTypeT> heaptype(Ctx&);
template<typename Ctx> MaybeResult<typename Ctx::RefTypeT> maybeRefType(Ctx&);
template<typename Ctx> MaybeResult<typename Ctx::RefTypeT> maybeReftype(Ctx&);
template<typename Ctx> Result<typename Ctx::RefTypeT> reftype(Ctx&);
template<typename Ctx> MaybeResult<typename Ctx::TypeT> tupletype(Ctx&);
template<typename Ctx> Result<typename Ctx::TypeT> valtype(Ctx&);
Expand Down

0 comments on commit d407cda

Please sign in to comment.