Skip to content

Commit

Permalink
Change "value" in example to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanrboyer authored Jan 11, 2025
1 parent 086381d commit 4031f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/multimedia.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ julia> struct MyType
val
end
julia> Base.show(io::IO, ::MIME"text/plain", x::MyType) = print(io, "My Value is ", x.val);
julia> Base.show(io::IO, ::MIME"text/plain", x::MyType) = print(io, "My value is ", x.val);
julia> show(stdout, MIME"text/plain"(), MyType(5))
My Value is 5
My value is 5
```
"""
struct MIME{mime} end
Expand Down

0 comments on commit 4031f1e

Please sign in to comment.