diff --git a/Project.toml b/Project.toml index 969b3c9e2d..de5e2ac5ce 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ITensors" uuid = "9136182c-28ba-11e9-034c-db9fb085ebd5" -version = "0.9.28" +version = "0.9.29" authors = ["Matthew Fishman ", "Miles Stoudenmire "] [workspace] diff --git a/examples/basic_ops/basic_ops.jl b/examples/basic_ops/basic_ops.jl index 17749654bc..d6fd7b6d61 100644 --- a/examples/basic_ops/basic_ops.jl +++ b/examples/basic_ops/basic_ops.jl @@ -37,7 +37,7 @@ println("X =\n", X, "\n") println("Y =\n", Y, "\n") println("R = Z * X =\n", R, "\n") println("S = Y + X =\n", S, "\n") -println("S = Y - X =\n", T, "\n") +println("T = Y - X =\n", T, "\n") # Check that adding incompatible tensors cause an error try