Skip to content

Commit 7ec50de

Browse files
authored
Merge pull request #38 from eschnett/patch-1
String -> Base.String
2 parents f39e50d + 06dc4fc commit 7ec50de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raw.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function Base.:(==)(a::Raw, b::Raw)
8787
end
8888

8989
Base.view(o::Raw) = view(o.data, o.pos:o.pos + o.len)
90-
String(o::Raw) = String(view(o))
90+
Base.String(o::Raw) = String(view(o))
9191

9292
Base.IteratorSize(::Type{Raw}) = Base.SizeUnknown()
9393
Base.eltype(::Type{Raw}) = Raw

0 commit comments

Comments
 (0)