Package: doxygen
Version: 1.8.3.1
Author: Guillem Jover <guillem@hadrons.org>
Status: applied
Description:
 Fix typos in documentation.


Index: doc/translator_report.txt
===================================================================
--- doc/translator_report.txt	(revision 844)
+++ doc/translator_report.txt	(working copy)
@@ -113,7 +113,7 @@
 Translator class but their identifiers do not appear in source files.
 The situation should be checked. The .cpp files and .h files excluding
 the '*translator*' files in doxygen/src directory were simply searched
-for occurence of the method identifiers:
+for occurrence of the method identifiers:
 
   QCString idLanguageCharset()
   QCString trAlphabeticalList()
@@ -1158,4 +1158,4 @@
     virtual QCString trEnumGeneratedFromFiles(bool single)
     virtual QCString trPanelSynchronisationTooltip(bool enable)
     virtual QCString trExtendsClass()
-    virtual QCString trInstanceMethods()
\ No newline at end of file
+    virtual QCString trInstanceMethods()
Index: doc/config.doc
===================================================================
--- doc/config.doc	(revision 844)
+++ doc/config.doc	(working copy)
@@ -2573,7 +2573,7 @@
  the class node. If there are many fields or methods and many nodes the 
  graph may become too big to be useful. The \c UML_LIMIT_NUM_FIELDS 
  threshold limits the number of items for each type to make the size more 
- managable. Set this to 0 for no limit. Note that the threshold may be 
+ manageable. Set this to 0 for no limit. Note that the threshold may be
  exceeded by 50% before the limit is enforced. So when you set the threshold
  to 10, up to 15 fields may appear, but if the number exceeds 15, the
  total amount of fields shown is limited to 10.
Index: doc/translator.py
===================================================================
--- doc/translator.py	(revision 844)
+++ doc/translator.py	(working copy)
@@ -1714,7 +1714,7 @@
                     in the Translator class but their identifiers do not appear
                     in source files. The situation should be checked. The .cpp
                     files and .h files excluding the '*translator*' files
-                    in doxygen/src directory were simply searched for occurence
+                    in doxygen/src directory were simply searched for occurrence
                     of the method identifiers:'''
                 f.write('\n' + '=' * 70 + '\n')
                 f.write(fill(s) + '\n\n')
Index: doc/markdown.doc
===================================================================
--- doc/markdown.doc	(revision 844)
+++ doc/markdown.doc	(working copy)
@@ -520,7 +520,7 @@
 
     a_nice_identifier
 
-Futhermore, a `*` or `_` only starts an emphasis if
+Furthermore, a `*` or `_` only starts an emphasis if
 - it is followed by an alphanumberical character, and
 - it is preceded by a space, newline, or one the following characters `<{([,:;`
 
Index: doc/install.doc
===================================================================
--- doc/install.doc	(revision 844)
+++ doc/install.doc	(working copy)
@@ -446,7 +446,7 @@
     of Qt that is needed for to compile doxygen.
     The Windows specific part were also created.
     As a result doxygen (without the wizard) can be compiled on systems 
-    without X11 or (the commerical version of) Qt. 
+    without X11 or (the commercial version of) Qt.
 
 <li>If you used WinZip to extract the tar archive it will (apparently) not 
     create empty folders, so you have to add the folders
Index: addon/doxywizard/config.l
===================================================================
--- addon/doxywizard/config.l	(revision 844)
+++ addon/doxywizard/config.l	(working copy)
@@ -408,7 +408,7 @@
 
     if (!wasQuoted) /* as a result of the expansion, a single string
 		       may have expanded into a list, which we'll
-		       add to sl. If the orginal string already 
+		       add to sl. If the original string already
 		       contained multiple elements no further 
 		       splitting is done to allow quoted items with spaces! */
     {
Index: src/pycode.l
===================================================================
--- src/pycode.l	(revision 844)
+++ src/pycode.l	(working copy)
@@ -1173,7 +1173,7 @@
 					  codifyLines(yytext);
 		                          endFontClass();
 
-					  // No indentation necesary
+					  // No indentation necessary
 					  g_noSuiteFound = FALSE;
                                        }
 
@@ -1182,7 +1182,7 @@
 					  codifyLines(yytext);
 		                          endFontClass();
 
-					  // No indentation necesary
+					  // No indentation necessary
 					  g_noSuiteFound = FALSE;
                                        }
     {IDENTIFIER}                       {
Index: src/doxygen.md
===================================================================
--- src/doxygen.md	(revision 844)
+++ src/doxygen.md	(working copy)
@@ -6,7 +6,7 @@
 
 This page provides a high-level overview of the internals of doxygen, with
 links to the relevant parts of the code. This document is intended for
-developers who want to work on doxygen. Users of doxygen are refered to the
+developers who want to work on doxygen. Users of doxygen are referred to the
 [User Manual](http://www.doxygen.org/manual.html).
 
 The generic starting point of the application is of cource the main() function.
Index: src/config.xml
===================================================================
--- src/config.xml	(revision 844)
+++ src/config.xml	(working copy)
@@ -1619,7 +1619,7 @@
 the class node. If there are many fields or methods and many nodes the 
 graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS 
 threshold limits the number of items for each type to make the size more 
-managable. Set this to 0 for no limit. Note that the threshold may be 
+manageable. Set this to 0 for no limit. Note that the threshold may be 
 exceeded by 50% before the limit is enforced.
 ' defval='10' minval='0' maxval='100' depends='HAVE_DOT'/>
     <option type='bool' id='TEMPLATE_RELATIONS' docs='
Index: src/translator_adapter.h
===================================================================
--- src/translator_adapter.h	(revision 844)
+++ src/translator_adapter.h	(working copy)
@@ -70,7 +70,7 @@
 };
 
 
-/** Adapter class for languages that only contain translations upto
+/** Adapter class for languages that only contain translations up to
  *  version 1.8.0.
  */
 class TranslatorAdapter_1_8_0 : public TranslatorAdapter_1_8_2
@@ -102,7 +102,7 @@
 
 };
 
-/** Adapter class for languages that only contain translations upto
+/** Adapter class for languages that only contain translations up to
  *  version 1.7.5.
  */
 class TranslatorAdapter_1_7_5 : public TranslatorAdapter_1_8_0
@@ -121,7 +121,7 @@
     { return english.trDirDepGraph(name); }
 };
 
-/** Adapter class for languages that only contain translations upto
+/** Adapter class for languages that only contain translations up to
  *  version 1.6.3.
  */
 class TranslatorAdapter_1_6_3 : public TranslatorAdapter_1_7_5
@@ -142,7 +142,7 @@
     { return english.trDateTime(year,month,day,dayOfWeek,hour,minutes,seconds,includeTime); }
 };
 
-/** Adapter class for languages that only contain translations upto
+/** Adapter class for languages that only contain translations up to
  *  version 1.6.0.
  */
 class TranslatorAdapter_1_6_0 : public TranslatorAdapter_1_6_3
@@ -167,7 +167,7 @@
     { return english.trNoMatches(); }
 };
 
-/** Adapter class for languages that only contain translations upto
+/** Adapter class for languages that only contain translations up to
  *  version 1.5.4
  */
 class TranslatorAdapter_1_5_4 : public TranslatorAdapter_1_6_0
@@ -246,7 +246,7 @@
     { return english.trTypeConstraints(); }
 };
 
-/** Adapter class for languages that only contain translations upto
+/** Adapter class for languages that only contain translations up to
  *  version 1.4.6
  */
 class TranslatorAdapter_1_4_6 : public TranslatorAdapter_1_5_4
Index: src/translator_gr.h
===================================================================
--- src/translator_gr.h	(revision 844)
+++ src/translator_gr.h	(working copy)
@@ -19,7 +19,7 @@
  * 15 Dec 2001 : Translation to greek by
  *               Harry Kalogirou <no email>
  *
- * 01 Jan 2009 : Greek maintainance by
+ * 01 Jan 2009 : Greek maintenance by
  *               Paul Gessos <gessos.paul@yahoo.gr>
  */
 
Index: src/configoptions.cpp
===================================================================
--- src/configoptions.cpp	(revision 844)
+++ src/configoptions.cpp	(working copy)
@@ -2424,7 +2424,7 @@
                  "the class node. If there are many fields or methods and many nodes the\n"
                  "graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS\n"
                  "threshold limits the number of items for each type to make the size more\n"
-                 "managable. Set this to 0 for no limit. Note that the threshold may be\n"
+                 "manageable. Set this to 0 for no limit. Note that the threshold may be\n"
                  "exceeded by 50% before the limit is enforced.",
                  0,100,10
                 );
Index: src/translator_hr.h
===================================================================
--- src/translator_hr.h	(revision 844)
+++ src/translator_hr.h	(working copy)
@@ -18,7 +18,7 @@
 // Updates:
 // --------
 // 2000/08/20 
-//  - Better handling of ISO-8859-2/ WIN 1250 stuff based on (actualy stolen from :-)) Czech translations
+//  - Better handling of ISO-8859-2/ WIN 1250 stuff based on (actually stolen from :-)) Czech translations
 //    implemented by Petr Prikryl (prikrylp@skil.cz).
 //    As opposed to Czech translation this one assumes that Doxygen strings are written in Linux ( it's true,
 //    I don't have QT pro licence ) , and uses ISOToWin function when built in WIN32
Index: src/memberdef.cpp
===================================================================
--- src/memberdef.cpp	(revision 844)
+++ src/memberdef.cpp	(working copy)
@@ -5128,7 +5128,7 @@
       }
       if (!mdef->documentation().isEmpty())
       {
-        //printf("transfering docs mdef->mdec (%s->%s)\n",mdef->argsString(),mdec->argsString());
+        //printf("transferring docs mdef->mdec (%s->%s)\n",mdef->argsString(),mdec->argsString());
         mdec->setDocumentation(mdef->documentation(),mdef->docFile(),mdef->docLine());
         mdec->setDocsForDefinition(mdef->isDocsForDefinition());
         if (mdefAl!=0)
@@ -5141,7 +5141,7 @@
       }
       else if (!mdec->documentation().isEmpty())
       {
-        //printf("transfering docs mdec->mdef (%s->%s)\n",mdec->argsString(),mdef->argsString());
+        //printf("transferring docs mdec->mdef (%s->%s)\n",mdec->argsString(),mdef->argsString());
         mdef->setDocumentation(mdec->documentation(),mdec->docFile(),mdec->docLine());
         mdef->setDocsForDefinition(mdec->isDocsForDefinition());
         if (mdecAl!=0)
Index: src/commentscan.l
===================================================================
--- src/commentscan.l	(revision 844)
+++ src/commentscan.l	(working copy)
@@ -665,7 +665,7 @@
   while (i>=0 && ((c = s.at(i))==' ' || c=='\t' || c=='\r')) i--;
   if (i!=(int)len-1) 
   {
-    s.resize(i+2); // string upto and including char at pos i and \0 terminator
+    s.resize(i+2); // string up to and including char at pos i and \0 terminator
   }
 }
 
@@ -877,7 +877,7 @@
 CITEID    [a-z_A-Z\x80-\xFF][a-z_A-Z0-9\x80-\xFF\-:/]*
 SCOPEID   {ID}({ID}*{BN}*"::"{BN}*)*({ID}?)
 SCOPENAME "$"?(({ID}?{BN}*("::"|"."){BN}*)*)((~{BN}*)?{ID})
-MAILADR   [a-z_A-Z0-9.+\-]+"@"[a-z_A-Z0-9\-]+("."[a-z_A-Z0-9\-]+)+[a-z_A-Z0-9\-]+ 
+MAILADDR   [a-z_A-Z0-9.+\-]+"@"[a-z_A-Z0-9\-]+("."[a-z_A-Z0-9\-]+)+[a-z_A-Z0-9\-]+ 
 RCSTAG    "$"{ID}":"[^\n$]+"$"
 
 %option noyywrap
@@ -939,7 +939,7 @@
    *   words and whitespace and other characters (#,?!, etc).
    *   grouping commands (e.g. @{ and @})
    *   language switch (e.g. \~english or \~).
-   *   mail adress (e.g. dimitri@stack.nl).
+   *   mail address (e.g. dimitri@stack.nl).
    *   quoted text, such as "foo@bar"
    *   XML commands, <summary></summary><remarks></remarks>
    */
@@ -950,7 +950,7 @@
 <Comment>{CMD}{CMD}"~"[a-z_A-Z]*	{ // escaped command
   					  addOutput(yytext);
   					}
-<Comment>{MAILADR}			{ // mail adress
+<Comment>{MAILADDR}			{ // mail address
   					  addOutput(yytext);
   					}
 <Comment>"\""[^"\n]*"\""		{ // quoted text
Index: src/translator_it.h
===================================================================
--- src/translator_it.h	(revision 844)
+++ src/translator_it.h	(working copy)
@@ -51,7 +51,7 @@
  *  2001/05: adopted new translation mechanism (trough adapters),
  *           translated new items used since version 1.2.5 and 1.2.6,
  *           revised those function returning strings in OPTIMIZE_OTPUT_FOR_C case,
- *           corrections regarding the plurals of some english terms mantained in the translation,
+ *           corrections regarding the plurals of some english terms maintained in the translation,
  *           changed some terms to better suit the sense
  *  2001/02: translated new items used since version 1.2.4
  *  2000/11: modified slightly the translation in trLegendDocs() function,
Index: src/htmldocvisitor.cpp
===================================================================
--- src/htmldocvisitor.cpp	(revision 844)
+++ src/htmldocvisitor.cpp	(working copy)
@@ -1834,11 +1834,11 @@
        // it's enough to replace these two, provided that the declaration
        // for the HTML version we generate (and as supported by the browser)
        // specifies that all the other symbols used in rawVal are
-       // within the right charachter class (i.e., they're not
-       // some multinational weird charachters not in the BASESET).
+       // within the right character class (i.e., they're not
+       // some multinational weird characters not in the BASESET).
        // We assume that 1) the browser will support whatever is remaining
        // in the formula and 2) the TeX formulae are generally governed
-       // by even stricter charachter restrictions so it should be enough.
+       // by even stricter character restrictions so it should be enough.
        //
        // On some incompliant browsers, additional translation of
        // '>' and '<' into "&gt;" and "&lt;", respectively, might be needed;
Index: src/htags.cpp
===================================================================
--- src/htags.cpp	(revision 844)
+++ src/htags.cpp	(working copy)
@@ -32,7 +32,7 @@
 
 /*! constructs command line of htags(1) and executes it.
  *  \retval TRUE success
- *  \retval FALSE an error has occured.
+ *  \retval FALSE an error has occurred.
  */
 bool Htags::execute(const QCString &htmldir)
 {
Index: src/translator_cn.h
===================================================================
--- src/translator_cn.h	(revision 844)
+++ src/translator_cn.h	(working copy)
@@ -19,7 +19,7 @@
 #define TRANSLATOR_CN_H
 
 /*!
-   If you want insert a space whenever Chinese meets English charactors, set
+   If you want insert a space whenever Chinese meets English characters, set
    CN_SPC to " ", else null.
 */
 #define CN_SPC " "
@@ -30,7 +30,7 @@
     /*! Used for identification of the language. The identification
      * should not be translated. It should be replaced by the name
      * of the language in English using lower-case characters only
-     * (e.g. "czech", "japanese", "russian", etc.). It sould be equal to
+     * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
      * the identification used in the language.cpp.
      */
     
Index: src/classdef.cpp
===================================================================
--- src/classdef.cpp	(revision 844)
+++ src/classdef.cpp	(working copy)
@@ -3159,7 +3159,7 @@
               cd=getResolvedClass(getNamespaceDef()->name()+"::"+usedClassName,0,&templSpec);
             }
             if (cd==0) cd=getResolvedClass(name()+"::"+usedClassName,0,&templSpec);
-            if (cd==0) cd=getResolvedClass(usedClassName,0,&templSpec); // TODO: also try inbetween scopes!
+            if (cd==0) cd=getResolvedClass(usedClassName,0,&templSpec); // TODO: also try in-between scopes!
             //printf("Search for class %s result=%p\n",usedClassName.data(),cd);
             if (cd) // class exists 
             {
@@ -3221,7 +3221,7 @@
   while ((i=re.match(type,p,&l))!=-1) // for each class name in the type
   {
     ClassDef *cd=getClass(name()+"::"+type.mid(i,l));
-    if (cd==0) cd=getClass(type.mid(i,l)); // TODO: also try inbetween scopes!
+    if (cd==0) cd=getClass(type.mid(i,l)); // TODO: also try in-between scopes!
     if (cd && cd!=this && !isBaseClass(cd))
     {
       if (m_impl->usesIntfClassDict==0) 
