Skip to content

Commit 8308915

Browse files
authored
rename copy! to copyto! in README (#69)
1 parent 52c873a commit 8308915

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ julia> @mpi_do man println(r[2][1:5])
121121
```jl
122122
@mpi_do man A = Elemental.DistMatrix(Float32)
123123
@mpi_do man B = Elemental.DistMatrix(Float32)
124-
@mpi_do man copy!(A, Float32[2 1; 1 2])
125-
@mpi_do man copy!(B, Float32[4, 5])
124+
@mpi_do man copyto!(A, Float32[2 1; 1 2])
125+
@mpi_do man copyto!(B, Float32[4, 5])
126126
```
127127

128128
Run distributed ridge regression ` ½|A*X-B|₂² + λ|X|₂²`

0 commit comments

Comments
 (0)