diff --git a/modules/img/alg/doc/alg.rst b/modules/img/alg/doc/alg.rst
index e9f5fb0f2b0d8f6bc43a509989365d5ad2ce108c..5e38b19b56f626664ae8f91d99d66d028f946f47 100644
--- a/modules/img/alg/doc/alg.rst
+++ b/modules/img/alg/doc/alg.rst
@@ -14,8 +14,8 @@ methods are used to handle the algorithm parameters. Applying an algorithm to an
 image is then conceptually a two-step process. First, an instance of an 
 algorithm class is created, yielding an algorithm object. In a second step, the 
 algorithm object is applied to an image. An algorithm can be applied in-place 
-(using the :meth:`~ost.img.ImageHandle.Apply` method), modifying the image, or 
-out-of-place, (using :meth:`~ost.img.ImageHandle.ApplyIP` ), leaving the original image 
+(using the :meth:`~ost.img.ImageHandle.ApplyIP` method), modifying the image, or 
+out-of-place, (using :meth:`~ost.img.ImageHandle.Apply` ), leaving the original image 
 untouched, and returning the result as a new image. 
 
 Here is an example. All the algorithms used in the following are described in the :ref:`algorithms` section.