Skip to content

Commit 3d1b83f

Browse files
authored
Merge pull request #172 from vaerksted/master
fix typos
2 parents 35520e5 + 5b738e9 commit 3d1b83f

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

docs/src/assets/dark.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
@charset "UTF-8";
2-
// The customizable varibles can be found here:
2+
// The customizable variables can be found here:
33
// https://github.com/JuliaDocs/Documenter.jl/tree/master/assets/html/scss
44
// under documenter/_variables or documenter/_overrides. But some stuff are Bulma defaults
55
// as well, so you may need to look them up too: https://bulma.io/documentation/customize/variables/
66

77

88
////////////////////////////////////////////////////////////////////////
99
////////////////////////////////////////////////////////////////////////
10-
// Thse define the template:
10+
// These define the template:
1111
$maincolor: rgb(78, 134, 151); // main color of the org theme
1212
$secondcolor: rgb(197, 96, 255); // secondary color that serves as accents
1313
// it is used as-is for links in light theme
@@ -136,7 +136,7 @@ html.theme--#{$themename} {
136136
background-color: darken-color($documenter-sidebar-background, 1);
137137
border-color: darken-color($documenter-sidebar-background, 2);
138138
margin-top: 1.0rem;
139-
margin-bottom: 1.0rem; // adjust the margings between search and other elements
139+
margin-bottom: 1.0rem; // adjust the margins between search and other elements
140140
&::placeholder {
141141
color: $mainwhite; // placeholder text color ("Search here...")
142142
}

docs/src/assets/light.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@charset "UTF-8";
2-
// The customizable varibles can be found here:
2+
// The customizable variables can be found here:
33
// https://github.com/JuliaDocs/Documenter.jl/tree/master/assets/html/scss
44
// under documenter/_variables or documenter/_overrides. But some stuff are Bulma defaults
55
// as well, so you may need to look them up too: https://bulma.io/documentation/customize/variables/
@@ -105,7 +105,7 @@ $input-focus-border-color: $mainwhite;
105105
background-color: darken-color($documenter-sidebar-background, 1);
106106
border-color: darken-color($documenter-sidebar-background, 2);
107107
margin-top: 1.0rem;
108-
margin-bottom: 1.0rem; // adjust the margings between search and other elements
108+
margin-bottom: 1.0rem; // adjust the margins between search and other elements
109109
&::placeholder {
110110
color: $mainwhite; // placeholder text color ("Search here...")
111111
}

docs/src/transforms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Transforms
22

3-
Below is the list of tranforms that are are available in this package.
3+
Below is the list of transforms that are are available in this package.
44

55
## Select
66

src/transforms/coalesce.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ isrevertible(::Type{<:Coalesce}) = true
4646

4747
colcache(::Coalesce, x) = findall(ismissing, x)
4848

49-
colapply(tramsform::Coalesce, x, c) = coalesce.(x, tramsform.value)
49+
colapply(transform::Coalesce, x, c) = coalesce.(x, transform.value)
5050

5151
colrevert(::Coalesce, y, c) = [i c ? missing : y[i] for i in 1:length(y)]

src/transforms/select.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Reject(spec) = Reject(colspec(spec))
129129

130130
Reject(cols::T...) where {T<:Col} = Reject(colspec(cols))
131131

132-
# argumet erros
132+
# argument errors
133133
Reject() = throw(ArgumentError("Cannot create a Reject object without arguments."))
134134
Reject(::AllSpec) = throw(ArgumentError("Cannot reject all columns."))
135135

test/transforms/levels.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
T = Levels("x" => ["n", "y", "m"], "y" => 1:4)
102102
@test_throws AssertionError apply(T, t)
103103

104-
# throws: non categorical collumn
104+
# throws: non categorical column
105105
T = Levels(:a => [true, false], ordered=[:a])
106106
@test_throws AssertionError apply(T, t)
107107

test/transforms/replace.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
tₒ = revert(T, n, c)
6262
@test t == tₒ
6363

64-
# collumns with diferent types
64+
# columns with different types
6565
a = [3, 2, 1, 4, 5, 3]
6666
b = [2.5, 4.5, 4.7, 2.5, 2.5, 5.3]
6767
c = [true, false, false, false, true, false]

0 commit comments

Comments
 (0)