Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/crosssectionalcharts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ struct CrossSectionalChartSVG <: Main.SVG
end

struct Axis
index::Int # compornent index
index::Int # component index
label::String
range::AbstractRange
end
Expand Down
2 changes: 1 addition & 1 deletion src/conversions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The original motivation for this arrangement was that Julia "did not" support
convert(::Type{C{T}}, c) where {C, T}
```
On Julia v0.6 or later, parameter constraints can refer to previous parameters.
Threfore, we can use:
Therefore, we can use:
```
convert(::Type{C}, c) where {T, C <: Colorant{T}}
```
Expand Down
2 changes: 1 addition & 1 deletion src/names_data.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This is the union of every color defined in X11 and in SVG, prefering the SVG
# This is the union of every color defined in X11 and in SVG, preferring the SVG
# definition when they clash.
# You can find the color swatches in:
# http://juliagraphics.github.io/Colors.jl/dev/namedcolors/
Expand Down
2 changes: 1 addition & 1 deletion src/utilities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Convert a color to a hexadecimal string, optionally specifying its style.

# Arguments
- `c`: a target color.
- `style`: a symbol to specify the hexadecimal notation. Spesifying the
- `style`: a symbol to specify the hexadecimal notation. Specifying the
uppercase symbols means the return values are in uppercase. The following
symbols are available:
- `:AUTO`: notation automatically selected according to the type of `c`
Expand Down
Loading