diff --git a/Aufgabe02.py b/Aufgabe02.py
index 7d0f6f08e94fe32832cb5c7b833f1742263f2c30..2b46fa4b55ffee79cd71ec3c6963e6e8853d89cb 100644
--- a/Aufgabe02.py
+++ b/Aufgabe02.py
@@ -5,7 +5,7 @@ def HeapSort(array):
 
     Parameters
     ----------
-    array: list(*int)
+    array: list[int]
         a list containing the integers to be sorted
 
     Returns
@@ -55,7 +55,7 @@ def InsertionSort(array):
 
     Parameters
     ----------
-    array: list(*int)
+    array: list[int]
         a list containing the intergers to be sorted
 
     Returns
@@ -79,8 +79,8 @@ def CountingSort(array, k=None):
 
     Parameters
     ----------
-    array: list(*int)
-        a list containing the intergers to be sorted
+    array: list[int]
+        a list containing the (positive) intergers to be sorted
 
     Returns
     -------