diff --git a/validphys2/src/validphys/asy_exponents.py b/validphys2/src/validphys/asy_exponents.py
index 12d20a3e7f55d3be29aea44cc418d54046561bcd..eb8a55bdecc0e0050617bcb6193346f65f85df56 100644
--- a/validphys2/src/validphys/asy_exponents.py
+++ b/validphys2/src/validphys/asy_exponents.py
@@ -123,8 +123,8 @@ def beta_asy(pdf, *,
 
     return betaGrid
 
-class AsyExponentPlotter(PDFPlotter):
-    """ Class inherenting from BandPDFPlotter, changing title and ylabel to reflect the effective
+class AsyExponentBandPlotter(BandPDFPlotter):
+    """ Class inheriting from BandPDFPlotter, changing title and ylabel to reflect the asymptotic
     exponent being plotted.
     """
 
@@ -141,10 +141,6 @@ class AsyExponentPlotter(PDFPlotter):
         else:
             return fr"$\{self.exponent}_a$ for ${parton_name}$"
 
-class AsyExponentBandPlotter(BandPDFPlotter, AsyExponentPlotter):
-    def __init__(self, exponent, *args,  **kwargs):
-        super().__init__(exponent, *args,  **kwargs)
-
 alpha_asy_pdfs = collect('alpha_asy', ('pdfs',))
 
 @figuregen