diff --git a/Troubled_Cell_Detector.py b/Troubled_Cell_Detector.py
index 39fbf326e7d0dc1b2c6d1af741080a65b3133a9f..7bd7a69f08fa792018377da771f3dff926a59749 100644
--- a/Troubled_Cell_Detector.py
+++ b/Troubled_Cell_Detector.py
@@ -283,7 +283,7 @@ class ArtificialNeuralNetwork(TroubledCellDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         # Reset ghost cells to adjust for stencil length
@@ -352,7 +352,7 @@ class WaveletDetector(TroubledCellDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         multiwavelet_coeffs = self._calculate_wavelet_coeffs(projection[:, 1: -1])
@@ -392,7 +392,7 @@ class WaveletDetector(TroubledCellDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         return []
@@ -549,7 +549,7 @@ class Boxplot(WaveletDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         indexed_coeffs = [[multiwavelet_coeffs[0, i], i]for i in range(self._num_coarse_grid_cells)]
@@ -621,7 +621,7 @@ class Theoretical(WaveletDetector):
         Returns
         -------
         list
-            List of indices for all troubled cells.
+            List of indices for all detected troubled cells.
 
         """
         troubled_cells = []