From 7d1fb2f09d01314e54b96b382ac30910df814649 Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Fri, 17 Nov 2023 12:46:00 -0500 Subject: [PATCH] remove nonfunctional doctest filter --- src/quantumchannel.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/quantumchannel.jl b/src/quantumchannel.jl index 2760a936..3d8f5f21 100644 --- a/src/quantumchannel.jl +++ b/src/quantumchannel.jl @@ -6,7 +6,7 @@ Delay and background noise processes are supported. The function `put!` is used to take the contents of a `RegRef` and put it in the channel. That state can can then be received by a register (after a delay) using the `take!` method. -```jldoctest; filter = r"(\\d{5})\\d+" => s"(\\d{5})\\d+" +```jldoctest julia> using QuantumSavory, ResumableFunctions, ConcurrentSim julia> regA = Register(1); regB = Register(1); @@ -40,8 +40,6 @@ julia> regA Register with 1 slots: [ Qubit ] Slots: nothing - -julia> regB; ``` """ struct QuantumChannel{T}