diff --git a/documentation/_static/api.rst b/documentation/_static/api.rst
index 68278ad80242f410c4e205337f1cfec0f11059de..30ad9c2f9af40f076705f2bab1528daaeb58f67a 100644
--- a/documentation/_static/api.rst
+++ b/documentation/_static/api.rst
@@ -2,22 +2,22 @@
 API
 ===
 
+
 ----------
 bfps.tools
 ----------
 
-.. automodule:: tools
+.. automodule:: bfps.tools
     :members:
     :undoc-members:
-    :inherited-members:
     :show-inheritance:
 
 
--------------
-bfps.Launcher
--------------
+-----------------
+bfps.NavierStokes
+-----------------
 
-.. autoclass:: Launcher.Launcher
+.. automodule:: bfps.NavierStokes
     :members:
     :undoc-members:
     :inherited-members:
@@ -25,10 +25,32 @@ bfps.Launcher
 
 
 -----------------
-bfps.NavierStokes
+bfps.FluidConvert
 -----------------
 
-.. autoclass:: NavierStokes.NavierStokes
+.. automodule:: bfps.FluidConvert
+    :members:
+    :undoc-members:
+    :inherited-members:
+    :show-inheritance:
+
+
+----------------
+bfps.FluidResize
+----------------
+
+.. automodule:: bfps.FluidResize
+    :members:
+    :undoc-members:
+    :inherited-members:
+    :show-inheritance:
+
+
+-------------
+bfps.Launcher
+-------------
+
+.. automodule:: bfps.Launcher
     :members:
     :undoc-members:
     :inherited-members:
diff --git a/documentation/conf.py b/documentation/conf.py
index 6e1cb48af7aeac96bcf022498c80c4e042c7caaa..5fc2f86699b6f446001efb8dda00fab733c434a4 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -21,7 +21,7 @@ import shlex
 # add these directories to sys.path here. If the directory is relative to the
 # documentation root, use os.path.abspath to make it absolute, like shown here.
 #sys.path.insert(0, os.path.abspath('.'))
-sys.path.append(os.path.abspath('../bfps'))
+sys.path.insert(0, os.path.abspath('..'))
 
 # -- General configuration ------------------------------------------------