Skip to content

Commit c501f63

Browse files
committed
fix typo, remove undefined export
1 parent 22739bb commit c501f63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/TensorKit.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export OrthogonalFactorizationAlgorithm, QR, QRpos, QL, QLpos, LQ, LQpos, RQ, RQ
8282

8383
# tensor operations
8484
export @tensor, @tensoropt, @ncon, ncon, @planar, @plansor
85-
export scalar, add!, contract!
85+
export scalar, add!
8686

8787
# truncation schemes
8888
export notrunc, truncerr, truncdim, truncspace, truncbelow

src/tensors/backends.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For controlling this value, see also [`set_blockscheduler`](@ref) and [`with_blo
1111
const blockscheduler = ScopedValue{Scheduler}(SerialScheduler())
1212

1313
"""
14-
cosnt subblockscheduler = ScopedValue{Scheduler}(SerialScheduler())
14+
const subblockscheduler = ScopedValue{Scheduler}(SerialScheduler())
1515
1616
The default scheduler used when looping over different subblocks in a tensor.
1717

0 commit comments

Comments
 (0)