Skip to content

Commit 720b473

Browse files
ericsherrill-made4netmtfishman
authored andcommitted
Fix print statement for subtraction result
Minor typo fix - should be T not S in 3rd example
1 parent f76bd0f commit 720b473

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/basic_ops/basic_ops.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ println("X =\n", X, "\n")
3737
println("Y =\n", Y, "\n")
3838
println("R = Z * X =\n", R, "\n")
3939
println("S = Y + X =\n", S, "\n")
40-
println("S = Y - X =\n", T, "\n")
40+
println("T = Y - X =\n", T, "\n")
4141

4242
# Check that adding incompatible tensors cause an error
4343
try

0 commit comments

Comments
 (0)