From 9df59150a62753d39efd2c44856857eb8856c3af Mon Sep 17 00:00:00 2001
From: Michiel Cottaar <MichielCottaar@protonmail.com>
Date: Thu, 30 May 2024 11:46:11 +0100
Subject: [PATCH] Update get_*  docs

---
 src/variables.jl | 30 +++++++++++++++++++-----------
 1 file changed, 19 insertions(+), 11 deletions(-)

diff --git a/src/variables.jl b/src/variables.jl
index eca69ad..444aa77 100644
--- a/src/variables.jl
+++ b/src/variables.jl
@@ -270,38 +270,46 @@ function get_free_variable(::Val{:max}; kwargs...)
 end
 
 """
-    get_pulse(building_block)
+    get_pulse(sequence)
 
-Get the pulse played out during the building block.
+Get the main pulses played out during the sequence.
 
-Any `pulse` variables not explicitly defined for this building block will be passed on to the pulse.
+This has to be defined for individual sequences to work.
+
+Any `pulse` variables not explicitly defined for this sequence will be passed on to the pulse.
 """
 function get_pulse end
 
 """
-    get_gradient(building_block)
+    get_gradient(sequence)
+
+Get the main gradients played out during the sequence.
 
-Get the gradient played out during the building block.
+This has to be defined for individual sequences to work.
 
-Any `gradient` variables not explicitly defined for this building block will be passed on to the gradient.
+Any `gradient` variables not explicitly defined for this sequence will be passed on to the gradient.
 """
 function get_gradient end
 
 """
-    get_readout(building_block)
+    get_readout(sequence)
 
-Get the readout played out during the building block.
+Get the main readout events played out during the sequence.
 
-Any `readout` variables not explicitly defined for this building block will be passed on to the readout.
+This has to be defined for individual sequences to work.
+
+Any `readout` variables not explicitly defined for this sequence will be passed on to the readout.
 """
 function get_readout end
 
 """
     get_pathway(sequence)
 
-Get the default spin pathway for the sequence.
+Get the default spin pathway(s) for the sequence.
+
+This has to be defined for individual sequences to work.
 
-Any `pathway` variables not explicitly defined for this building block will be passed on to the pathway.
+Any `pathway` variables not explicitly defined for this sequence will be passed on to the pathway.
 """
 function get_pathway end
 
-- 
GitLab