diff --git a/src/components/readouts/single_readouts.jl b/src/components/readouts/single_readouts.jl
index ee97eed7a3ba2e8f90adc38343c0d484c7478835..ee720375f41c546a3b166d8d2d615e9750db3273 100644
--- a/src/components/readouts/single_readouts.jl
+++ b/src/components/readouts/single_readouts.jl
@@ -1,6 +1,7 @@
-module InstantReadouts
+module SingleReadouts
+import JuMP: @constraint
 import ...AbstractTypes: ReadoutComponent
-import ...Variables: variables, duration, effective_time, make_generic
+import ....Variables: duration, effective_time, make_generic
 import ..ADCs: ADC
 
 """
@@ -8,7 +9,7 @@ import ..ADCs: ADC
 
 Represents an instantaneous `Readout` of the signal.
 
-It has no parameters or properties to set.
+It has no parameters or variables to set.
 """
 struct SingleReadout <: ReadoutComponent
 end