Skip to content

Commit

Permalink
Fix typo: Type -> type (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
jumerckx authored Jul 22, 2024
1 parent bf3885a commit b355c7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/IR/Value.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ struct Value
end

Base.convert(::Core.Type{API.MlirValue}, value::Value) = value.value
Base.size(value::Value) = Base.size(Type(value))
Base.ndims(value::Value) = Base.ndims(Type(value))
Base.size(value::Value) = Base.size(type(value))
Base.ndims(value::Value) = Base.ndims(type(value))

"""
==(value1, value2)
Expand Down

0 comments on commit b355c7a

Please sign in to comment.