Skip to content

Commit a6f6b18

Browse files
committed
Fix typo
1 parent a309cd8 commit a6f6b18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Nonlinear/ReverseAD/Coloring/Coloring.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ function recovery_preprocess(
365365
# adjlist for node u in twocolor idx starts at
366366
# vec[offset[u]]
367367
# u has global index vlist[u]
368-
vec = vector{Int}(undef, offset[length(vlist)+1] - 1)
368+
vec = Vector{Int}(undef, offset[length(vlist)+1] - 1)
369369
# now fill in
370370
for k in 1:length(my_edges)
371371
u, v = my_edges[k]

0 commit comments

Comments
 (0)