# HG changeset patch
# User Alpar Juttner <alpar@cs.elte.hu>
# Date 1228215443 0
# Node ID 7030149efed21ce93cabd00e1fa6a13ce104491c
# Parent  01c443515ad2aee0e6213eae1e209dfbe9004182
Minor doc improvements in HaoOrlin (#58)

diff -r 01c443515ad2 -r 7030149efed2 lemon/hao_orlin.h
--- a/lemon/hao_orlin.h	Tue Dec 02 08:21:47 2008 +0100
+++ b/lemon/hao_orlin.h	Tue Dec 02 10:57:23 2008 +0000
@@ -821,7 +821,7 @@
     /// \n
     /// If you need more control on the execution,
     /// first you must call \ref init(), then the \ref calculateIn() or
-    /// \ref calculateIn() functions.
+    /// \ref calculateOut() functions.
 
     /// @{
 
@@ -883,8 +883,8 @@
     /// source-side.
     ///
     /// Calculates a minimum cut with \f$ source \f$ on the
-    /// source-side (i.e. a set \f$ X\subsetneq V \f$ with \f$ source
-    /// \in X \f$ and minimal out-degree).
+    /// source-side (i.e. a set \f$ X\subsetneq V \f$ with
+    /// \f$ source \in X \f$ and minimal out-degree).
     void calculateOut() {
       findMinCutOut();
     }
@@ -893,8 +893,8 @@
     /// target-side.
     ///
     /// Calculates a minimum cut with \f$ source \f$ on the
-    /// target-side (i.e. a set \f$ X\subsetneq V \f$ with \f$ source
-    /// \in X \f$ and minimal out-degree).
+    /// target-side (i.e. a set \f$ X\subsetneq V \f$ with
+    /// \f$ source \in X \f$ and minimal out-degree).
     void calculateIn() {
       findMinCutIn();
     }