Skip to content

Commit 61a2d0e

Browse files
sostockKristofferC
authored andcommitted
Fix formatting of compat notes (#39519)
(cherry picked from commit 62f1be5)
1 parent be049fa commit 61a2d0e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stdlib/REPL/src/TerminalMenus/config.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Configure behavior for selection menus via keyword arguments:
3939
Subtypes of `ConfiguredMenu` will print `cursor`, `up_arrow`, and `down_arrow` automatically
4040
as needed, your `writeline` method should not print them.
4141
42-
!!! compat Julia 1.6
42+
!!! compat "Julia 1.6"
4343
`Config` is available as of Julia 1.6. On older releases use the global `CONFIG`.
4444
"""
4545
function Config(;
@@ -81,7 +81,7 @@ All other keyword arguments are as described for [`TerminalMenus.Config`](@ref).
8181
`checked` and `unchecked` are not printed automatically, and should be printed by
8282
your `writeline` method.
8383
84-
!!! compat Julia 1.6
84+
!!! compat "Julia 1.6"
8585
`MultiSelectConfig` is available as of Julia 1.6. On older releases use the global `CONFIG`.
8686
"""
8787
function MultiSelectConfig(;
@@ -109,7 +109,7 @@ end
109109
110110
Global menu configuration parameters
111111
112-
!!! compat Julia 1.6
112+
!!! compat "Julia 1.6"
113113
`CONFIG` is deprecated, instead configure menus via their constructors.
114114
"""
115115
const CONFIG = Dict{Symbol,Union{Char,String,Bool}}()
@@ -130,7 +130,7 @@ Keyword-only function to configure global menu parameters
130130
- `supress_output::Bool=false`: Ignored legacy argument, pass `suppress_output` as a keyword argument to `request` instead.
131131
- `ctrl_c_interrupt::Bool=true`: If `false`, return empty on ^C, if `true` throw InterruptException() on ^C
132132
133-
!!! compat Julia 1.6
133+
!!! compat "Julia 1.6"
134134
As of Julia 1.6, `config` is deprecated. Use `Config` or `MultiSelectConfig` instead.
135135
"""
136136
function config(;charset::Symbol = :na,

0 commit comments

Comments
 (0)