diff --git a/pytools/__init__.py b/pytools/__init__.py
index d449a72134abcd044c2b350ce9d2fc66dbf180ce..4c597837bfd0a89b22e126623ba96d6947162cdf 100644
--- a/pytools/__init__.py
+++ b/pytools/__init__.py
@@ -1599,7 +1599,9 @@ class Table:
 
     def csv(self, dialect='excel', csv_kwargs=None):
         """Returns a string containing a CSV representation of the table.
-        The `dialect` and `csv_kwargs` parameters are passed to :func:`csv.writer`.
+
+        :arg dialect: String passed to :func:`csv.writer`.
+        :arg csv_kwargs: Dict of arguments passed to :func:`csv.writer`.
 
         .. doctest ::