Skip to content

Commit 6cf60c8

Browse files
Fix print statement in subtraction example (#1750)
Co-authored-by: Matthew Fishman <mtfishman@users.noreply.github.com>
1 parent f76bd0f commit 6cf60c8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ITensors"
22
uuid = "9136182c-28ba-11e9-034c-db9fb085ebd5"
3-
version = "0.9.28"
3+
version = "0.9.29"
44
authors = ["Matthew Fishman <mfishman@flatironinstitute.org>", "Miles Stoudenmire <mstoudenmire@flatironinstitute.org>"]
55

66
[workspace]

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)