diff --git a/Snakefile b/Snakefile
index 207306e9399aaa5e7e054195bf269d631022f957..751bca6bf98cc1b6512b922074399d58027876ca 100644
--- a/Snakefile
+++ b/Snakefile
@@ -23,7 +23,7 @@ TODO: Contemplate allowing vector input for ICs
 TODO: Discuss how wavelet details should be plotted
 
 Urgent:
-TODO: Mark Burgers' equation as inviscid
+TODO: Mark Burgers' equation as inviscid -> Done
 TODO: Make sure CFL number is absolute value
 TODO: Make sure only ghost cells are limited for Dirichlet boundary
 TODO: Move height adjustment and stretch factor into implicit solver function
diff --git a/scripts/tcd/Equation.py b/scripts/tcd/Equation.py
index 9f97e144dded70da4a06254daa231bafa679fb26..84e854b35c3e69c6484f1334bda571f831353bff 100644
--- a/scripts/tcd/Equation.py
+++ b/scripts/tcd/Equation.py
@@ -355,7 +355,7 @@ class LinearAdvection(Equation):
 
 
 class Burgers(Equation):
-    """Class for Burgers' equation.
+    """Class for inviscid Burgers' equation.
 
     Attributes
     ----------