Skip to content

Commit d407cda

Browse files
authored
Fix typo in parsers.h (WebAssembly#7032)
Corrected `maybeRefType` declaration to `maybeReftype`.
1 parent de421db commit d407cda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/parsers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ using namespace std::string_view_literals;
3030
template<typename Ctx>
3131
Result<typename Ctx::HeapTypeT> absheaptype(Ctx&, Shareability);
3232
template<typename Ctx> Result<typename Ctx::HeapTypeT> heaptype(Ctx&);
33-
template<typename Ctx> MaybeResult<typename Ctx::RefTypeT> maybeRefType(Ctx&);
33+
template<typename Ctx> MaybeResult<typename Ctx::RefTypeT> maybeReftype(Ctx&);
3434
template<typename Ctx> Result<typename Ctx::RefTypeT> reftype(Ctx&);
3535
template<typename Ctx> MaybeResult<typename Ctx::TypeT> tupletype(Ctx&);
3636
template<typename Ctx> Result<typename Ctx::TypeT> valtype(Ctx&);

0 commit comments

Comments
 (0)