Skip to content

Commit b461a09

Browse files
committed
Update links to ComponentArrays and other maintenance
1 parent bf7a15e commit b461a09

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Diff for: docs/make.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ links = InterLinks(
5151
"QuantumPropagators" => org_inv("QuantumPropagators"),
5252
"QuantumGradientGenerators" => org_inv("QuantumGradientGenerators"),
5353
"ComponentArrays" => (
54-
"https://jonniedie.github.io/ComponentArrays.jl/stable/",
55-
"https://jonniedie.github.io/ComponentArrays.jl/stable/objects.inv",
54+
"https://sciml.github.io/ComponentArrays.jl/stable/",
55+
"https://sciml.github.io/ComponentArrays.jl/stable/objects.inv",
5656
joinpath(@__DIR__, "src", "inventories", "ComponentArrays.toml")
5757
),
5858
"RecursiveArrayTools" => (

Diff for: docs/src/assets/topbar/topbar.css

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ html {
1313
top: 0;
1414
background-color: #282f2f;
1515
border-bottom: 1px solid #5e6d6f;
16+
font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
1617
}
1718

1819
#topbar-nav #nav-items {

Diff for: src/propagate.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function init_prop_trajectory(
127127
for prefix in _prefixes
128128
for key in propertynames(traj)
129129
if startswith(string(key), prefix)
130-
_kwargs_dict[Symbol(string(key)[length(prefix)+1:end])] =
130+
_kwargs_dict[Symbol(string(key)[(length(prefix)+1):end])] =
131131
getproperty(traj, key)
132132
end
133133
end
@@ -136,7 +136,7 @@ function init_prop_trajectory(
136136
for prefix in _prefixes
137137
for (key, val) in kwargs
138138
if startswith(string(key), prefix)
139-
_kwargs_dict[Symbol(string(key)[length(prefix)+1:end])] = val
139+
_kwargs_dict[Symbol(string(key)[(length(prefix)+1):end])] = val
140140
end
141141
end
142142
end

Diff for: src/workflows.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ function Base.take!(buffer::FirstLastBuffer)
170170
end
171171
result = Vector{UInt8}(undef, length_result)
172172
result[1:N] .= buffer.first
173-
result[N+1:N+length(sep)] .= sep
174-
result[N+length(sep)+1:end] .= circshift(last, shift)
173+
result[(N+1):(N+length(sep))] .= sep
174+
result[(N+length(sep)+1):end] .= circshift(last, shift)
175175
end
176176
buffer.written = 0
177177
return result

0 commit comments

Comments
 (0)