Skip to content

Commit ac07d5f

Browse files
authored
fix: typo extra arg (#1203)
1 parent 3027c7f commit ac07d5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Reactant"
22
uuid = "3c362404-f566-11ee-1572-e11a4b42c853"
33
authors = ["William Moses <[email protected]>", "Valentin Churavy <[email protected]>", "Sergio Sánchez Ramírez <[email protected]>", "Paul Berg <[email protected]>", "Avik Pal <[email protected]>", "Mosè Giordano <[email protected]>"]
4-
version = "0.2.79"
4+
version = "0.2.80"
55

66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

src/TracedRArray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ end
345345
function Base.setindex!(a::TracedRArray{T,N}, v, indices::AbstractArray) where {T,N}
346346
return _setindex_linear!(a, v, indices)
347347
end
348-
function Base.setindex!(a::TracedRArray{T,1}, v, indices::AbstractArray) where {T,N}
348+
function Base.setindex!(a::TracedRArray{T,1}, v, indices::AbstractArray) where {T}
349349
return _setindex_linear!(a, v, indices)
350350
end
351351

0 commit comments

Comments
 (0)