Skip to content

Commit 11af951

Browse files
authored
Update show_colors.jl (#191)
* Update show_colors.jl * Update show_colors.jl
1 parent d854aa4 commit 11af951

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/show_colors.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
show_colors(result; kwargs...)
55
6-
Create a visualization for an [`AbstractColoringResult`](@ref), with the help of the the [JuliaImages](https://juliaimages.org) ecosystem.
6+
Create a visualization for an [`AbstractColoringResult`](@ref), with the help of the [JuliaImages](https://juliaimages.org) ecosystem.
77
88
- For `:column` or `:row` colorings, it returns a tuple `(A_img, B_img)`.
99
- For `:bidirectional` colorings, it returns a tuple `(A_img, Br_img, Bc_img)`.
@@ -18,6 +18,6 @@ Create a visualization for an [`AbstractColoringResult`](@ref), with the help of
1818
- `scale::Int`: scale the size of matrix entries to `scale × scale` pixels. Defaults to `1`.
1919
- `pad::Int`: set padding between matrix entries, in pixels. Defaults to `0`.
2020
21-
For a matrix of size `(n, m)`, the resulting output will be of size `(n * (scale + pad) + pad, m * (scale + pad) + pad)`.
21+
For a matrix of size `(m, n)`, the resulting output will be of size `(m * (scale + pad) + pad, n * (scale + pad) + pad)`.
2222
"""
2323
function show_colors end

0 commit comments

Comments
 (0)