Skip to content

Commit 67c9e0e

Browse files
committed
Fix
1 parent 50b3f08 commit 67c9e0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Fields/set!.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ end
3333
# This interface helps us do things like set distributed fields
3434
set!(u::Field, f::Function) = set_to_function!(u, f)
3535
set!(u::Field, a::Union{Array, OffsetArray}) = _set(u, a)
36-
_set(u::Field, a::VT) where {VT} = set_to_array!(u, a)
36+
_set!(u::Field, a::VT) where {VT} = set_to_array!(u, a)
3737
set!(u::Field, v::Field) = set_to_field!(u, v)
3838

3939
function set!(u::Field, a::Number)

0 commit comments

Comments
 (0)