Skip to content

Commit 1c82cb8

Browse files
authored
Remove "you" phrasing.
1 parent fa4fa79 commit 1c82cb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

base/multimedia.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ Examples of common media types include `"text/plain"``, `"text/html"``, `"image/
3030
3131
A specific singleton MIME **type** is constructed by passing the MIME string as a symbol,
3232
e.g. `MIME{Symbol("text/plain")}`.
33-
The string macro [`@MIME_str`](@ref) allow you to specify `MIME{Symbol("...")}` types more succinctly
33+
The string macro [`@MIME_str`](@ref) allows `MIME{Symbol("...")}` types to be specified more succinctly
3434
as `MIME"..."`, for example `MIME"text/plain"`.
3535
Singleton MIME types can be used to add new methods to the [`show`](@ref) function.
3636
3737
A `MIME` **instance** is created by calling the MIME constructor, either directly,
3838
e.g. `MIME("text/plain")`, or after the string macro, e.g. `MIME"text/plain"()`.
3939
A `mime::MIME` instance can be passed as the second argument to [`show(io, mime, x)`](@ref)
4040
to request output in that format (if it is implemented for `x`), as well as to various other functions like
41-
[`showable`](@ref), [`repr`](@ref), and [`display`](@ref); most such functions also allow you to
42-
pass a string (e.g. `"text/plain"`) that will be converted to a `MIME` instance for you.
41+
[`showable`](@ref), [`repr`](@ref), and [`display`](@ref); most such functions also allow
42+
passing a string (e.g. `"text/plain"`) that will be converted to a `MIME` instance automatically.
4343
4444
# Examples
4545
```jldoctest

0 commit comments

Comments
 (0)