From 6727b0538d8cef6440518164d2152f3f72c4b801 Mon Sep 17 00:00:00 2001
From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz>
Date: Sun, 8 Apr 2018 23:15:52 +0200
Subject: [PATCH] fix documentation of regexps

---
 alib2data/src/regexp/formal/FormalRegExp.h       | 4 ++--
 alib2data/src/regexp/unbounded/UnboundedRegExp.h | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/alib2data/src/regexp/formal/FormalRegExp.h b/alib2data/src/regexp/formal/FormalRegExp.h
index f7c966ad63..130688af27 100644
--- a/alib2data/src/regexp/formal/FormalRegExp.h
+++ b/alib2data/src/regexp/formal/FormalRegExp.h
@@ -53,7 +53,7 @@ class GeneralAlphabet;
  * Formal regular expression represents regular expression where nodes of concatenation and alternation have exactly two children. Describes regular languages.
 
  * \details
- * Definition is classical definition of finite automata.
+ * Definition is unbounded definition of regular expressions.
  * E = (T, C),
  * T (Alphabet) = finite set of terminal symbols
  * C (Content) = representation of the regular expression
@@ -156,7 +156,7 @@ public:
 	 *
 	 * \param other the other instance
 	 *
-	 * \returns the actual relation between two by type same automata instances
+	 * \returns the actual relation between two by type same expression instances
 	 */
 	int compare ( const FormalRegExp & other ) const;
 
diff --git a/alib2data/src/regexp/unbounded/UnboundedRegExp.h b/alib2data/src/regexp/unbounded/UnboundedRegExp.h
index 508ba311bf..4264bc6b4d 100644
--- a/alib2data/src/regexp/unbounded/UnboundedRegExp.h
+++ b/alib2data/src/regexp/unbounded/UnboundedRegExp.h
@@ -53,7 +53,7 @@ class GeneralAlphabet;
  * Unbounded regular expression represents regular expression where nodes of concatenation and alternation can have any number of children. Describes regular languages.
 
  * \details
- * Definition is classical definition of finite automata.
+ * Definition is unbounded definition of regular expressions.
  * E = (T, C),
  * T (Alphabet) = finite set of terminal symbols
  * C (Content) = representation of the regular expression
@@ -156,7 +156,7 @@ public:
 	 *
 	 * \param other the other instance
 	 *
-	 * \returns the actual relation between two by type same automata instances
+	 * \returns the actual relation between two by type same expression instances
 	 */
 	int compare ( const UnboundedRegExp & other ) const;
 
-- 
GitLab