diff --git a/docs/index.txt b/docs/index.txt
index ca73c9c9e69cea9d8d4f94ec413ee602b9688da0..277dc890bf8a758c022d33d6d90e0ba3b2a6131b 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -9,6 +9,7 @@ Welcome to tupak's documentation!
    :caption: Contents:
 
    likelihood
+   samplers
 
 
 Indices and tables
diff --git a/docs/likelihood.txt b/docs/likelihood.txt
index 3caa397e477048dfb51aabfaac652d74fc68947c..aeb9b1ce8e851acbbc8e871502c1ecbd1fed17f2 100644
--- a/docs/likelihood.txt
+++ b/docs/likelihood.txt
@@ -2,7 +2,29 @@
 Likelihood
 ==========
 
-.. automodule:: tupak.likelihood
+`tupak` likelihood objects are used in calculating the likelihood of the data
+for some specific set of parameters. In mathematical notation, the likelihood
+can be generically written as :math:`\mathcal{L}(d| \theta)`. How this is
+coded up will depend on the problem, but `tupak` expects all likelihood
+objects to have a `parameters` attribute (a dictionary of key-value pairs) and
+a `log_likelihood()` method.
+
+The default likelihood we use in the examples is `GravitationalWaveTransient`:
+
+.. autoclass:: tupak.likelihood.GravitationalWaveTransient
+    :members:
+
+We also provide a simpler likelihood
+
+.. autoclass:: tupak.likelihood.BasicGravitationalWaveTransient
     :members:
 
+We provide an empty parent class which can be subclassed for alternative use
+cases
+
+.. autoclass:: tupak.likelihood.Likelihood
+    :members:
+
+
+