Browse Source

Removed obsolete comment about the origin of the translated code which has not yet been published

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@8504 8c9fc860-2736-0410-a75d-ab315db34111
negelef 6 years ago
parent
commit
b3a3e3da74
2 changed files with 4 additions and 7 deletions
  1. 3 5
      source/FoxDocumentationParser.Mod
  2. 1 2
      source/FoxDocumentationTree.Mod

+ 3 - 5
source/FoxDocumentationParser.Mod

@@ -1,7 +1,6 @@
 (**
 	@description
-	The documentation parser parses a documentation comment according to the following EBNF (taken from Compiler Suite - Generic DCoocumentation Generation by Florian Negele, slightly modified)
-	and stores the result in a data structure defined in module [[FoxDocumentationParser]].
+	The documentation parser parses a documentation comment according to the following EBNF	and stores the result in a data structure defined in module [[FoxDocumentationParser]].
 
 	{{{
 	Documentation = {Document}.
@@ -63,9 +62,8 @@
 
 	@author Felix Friedrich
 *)
-(** Parser for documentation comments. Independent of the programming language Oberon.
-	Inspired and partially cloned from Florian Negele's Compiler Suite.
-*)
+
+(** Parser for documentation comments. Independent of the programming language Oberon. *)
 MODULE FoxDocumentationParser;
 
 IMPORT Scanner := FoxDocumentationScanner, Tree := FoxDocumentationTree, D := Debugging;

+ 1 - 2
source/FoxDocumentationTree.Mod

@@ -1,6 +1,5 @@
 (**
-	Documentation tree to represent a module documentation. Independent of source language. \
-	Implemented according to Compiler Suite - Generic Documentation Generation by Florian Negele.
+	Documentation tree to represent a module documentation. Independent of source language.
 
 	The documentation tree represents the [[docuEBNF|EBNF]] as implemented by [[FoxDocumentationParser]]
 	#author# Felix Friedrich