Skip to content

Commit 95a636e

Browse files
committed
Formatting
1 parent 0966414 commit 95a636e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/indexing.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,9 @@ end
309309
end
310310

311311
# required: one implementation for canonical index style
312-
@interface ::AbstractSparseArrayInterface function eachstoredindex(style::IndexStyle, A::AbstractArray)
312+
@interface ::AbstractSparseArrayInterface function eachstoredindex(
313+
style::IndexStyle, A::AbstractArray
314+
)
313315
if style == IndexStyle(A)
314316
throw(MethodError(eachstoredindex, Tuple{typeof(style),typeof(A)}))
315317
elseif style == IndexCartesian()

src/map.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ end
109109

110110
# Derived functions
111111
# -----------------
112-
@interface I::AbstractSparseArrayInterface Base.copyto!(
113-
C::AbstractArray, A::AbstractArray
114-
) = @interface I map!(identity, C, A)
112+
@interface I::AbstractSparseArrayInterface Base.copyto!(C::AbstractArray, A::AbstractArray) = @interface I map!(
113+
identity, C, A
114+
)
115115

116116
# Utility functions
117117
# -----------------

0 commit comments

Comments
 (0)