From fd2e5a4fbf82cc873bbb2f8bf744103f366f01a1 Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Sat, 10 Mar 2018 10:11:08 +0100
Subject: [PATCH] Fix references

---
 bob/bio/base/extractor/stacks.py    | 2 +-
 bob/bio/base/preprocessor/stacks.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bob/bio/base/extractor/stacks.py b/bob/bio/base/extractor/stacks.py
index 941b2895..1024a6bf 100644
--- a/bob/bio/base/extractor/stacks.py
+++ b/bob/bio/base/extractor/stacks.py
@@ -171,7 +171,7 @@ class ParallelExtractor(ParallelProcessor, MultipleExtractor):
            [ 1.,  2.,  3.]]), array([[ 0.5,  1. ,  1.5],
            [ 0.5,  1. ,  1.5]])]
 
-    The data may be further processed using a :any:`SequentialProcessor`:
+    The data may be further processed using a :any:`SequentialExtractor`:
 
     >>> from bob.bio.base.extractor import SequentialExtractor
     >>> total_extractor = SequentialExtractor(
diff --git a/bob/bio/base/preprocessor/stacks.py b/bob/bio/base/preprocessor/stacks.py
index 3fbda2cd..a23e77b8 100644
--- a/bob/bio/base/preprocessor/stacks.py
+++ b/bob/bio/base/preprocessor/stacks.py
@@ -78,7 +78,7 @@ class ParallelPreprocessor(ParallelProcessor, Preprocessor):
            [ 1.,  2.,  3.]]), array([[ 0.5,  1. ,  1.5],
            [ 0.5,  1. ,  1.5]])]
 
-    The data may be further processed using a :any:`SequentialProcessor`:
+    The data may be further processed using a :any:`SequentialPreprocessor`:
 
     >>> from bob.bio.base.preprocessor import SequentialPreprocessor
     >>> total_preprocessor = SequentialPreprocessor(
-- 
GitLab