]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix some typos in the documentation.
authorDavid Wells <drwells@vt.edu>
Wed, 26 Aug 2015 13:30:09 +0000 (09:30 -0400)
committerDavid Wells <drwells@vt.edu>
Wed, 26 Aug 2015 13:30:09 +0000 (09:30 -0400)
doc/developers/cmake-internals.html
doc/developers/porting.html
doc/developers/testsuite.html
doc/developers/writing-documentation.html
doc/users/cmakelists.html

index e5ec6c0c260e9a6e84fc31a2d6da8db7909412d7..4c29722b2a171198ccac6f3be67463fb8c0cc566 100644 (file)
@@ -445,7 +445,7 @@ FEATURE_DEFINITIONS(|_DEBUG|_RELEASE)
 <pre>
 FEATURE_&lt;FEATURE&gt;_DEPENDS              (a variable)
   - a variable which contains an optional list of other features
-    this feature depends on (and which have to be enbled for this feature
+    this feature depends on (and which have to be enabled for this feature
     to work.)
     Features must be given with short name, i.e. without DEAL_II_WITH_
 
@@ -559,7 +559,7 @@ DEAL_II_FORCE_BUNDLED_&lt;FEATURE&gt;        (an option)
         <li> <code>DEAL_II_USER_INCLUDE_DIRS</code>
       </ul>
     <li>
-      Include dirs from bundled packages necessary for the compilation fo
+      Include dirs from bundled packages necessary for the compilation of
       the library and user projects out of the build directory:
       <ul>
         <li> <code>DEAL_II_BUNDLED_INCLUDE_DIRS</code>
@@ -668,7 +668,7 @@ SET(_inst
 #   ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/deal_ii_objects_(debug/release)
 # so that it is available in global scope.
 #
-# Header files and instatiation files (${_header}, ${_inst}) are added
+# Header files and instantiation files (${_header}, ${_inst}) are added
 # for cosmetic reasons, so that they show up in IDEs.
 #
 DEAL_II_ADD_LIBRARY(obj_dofs OBJECT ${_src} ${_header} ${_inst})
index 658b5c7a9087f8eac73242ba2435ab96a6865aaf..f49b08a049320e078c8765abeaecac1f1b74d039 100644 (file)
@@ -27,7 +27,7 @@
     <h2>Unknown compiler</h2>
 
     <p>
-      Currently, the <acronym>deal.II</acronym> CMake Buildsystem
+      Currently, the <acronym>deal.II</acronym> CMake build system
       recognizes
       <a href="http://gcc.gnu.org/">gcc</a>,
       <a href="http://clang.llvm.org/">clang</a>, as well as
@@ -35,7 +35,7 @@
       sets up reasonable default compiler flags.
       <ul>
         <li>
-          To start porting for an unkown compiler, specify
+          To start porting to an unknown compiler, specify
           <code>-DDEAL_II_SETUP_DEFAULT_COMPILER_FLAGS=OFF</code> and set all
           necessary compiler flags by hand via
 <pre>
@@ -78,7 +78,7 @@ include/deal.II/base/config.h.in
       information might help:
       <ul>
         <li>
-          The buildsystem of <acronym>deal.II</acronym> uses <a
+          The build system of <acronym>deal.II</acronym> uses <a
           href="http://www.cmake.org/" target="_top">CMake</a>.  So,
           in order to port <acronym>deal.II</acronym> to a new platform,
           it is obviously necessary that <a href="http://www.cmake.org/"
@@ -130,7 +130,7 @@ include/deal.II/base/config.h.in
       You have to set up a native deal.II build directory first and run
       <code>make expand_instantiations</code> in it. The executable is
       needed for the build system (and obviously the cross compiled version
-      cannot be used). Locate the <code>expand_instantions</code>
+      cannot be used). Locate the <code>expand_instantiations</code>
       executable and export its location in the <code>PATH</code>
       environment variable.
     </p>
index 4397bd4d3eee7420ab3c39835fe98b2765dc8a5a..1ace25b8fd4495587acbdb88a4c5a173af1a51bb 100644 (file)
@@ -274,7 +274,7 @@ xx: ===============================    OUTPUT END   ============================
           category: The test project failed in the configuration stage
         </li>
         <li>
-          <code>BUILD</code>: compilation error occured
+          <code>BUILD</code>: compilation error occurred
         </li>
         <li>
           <code>RUN</code>: the test executable could not be run / aborted
@@ -431,7 +431,7 @@ category/test.[compiler=&lt;regex&gt;=&lt;yes|no&gt;.]*[with_&lt;feature&gt;=&lt
       Normally, a test will be set up so that it runs twice, once in debug and
       once in release configuration.
       If a specific test can only be run in debug or release configurations but
-      not in both it is possible to restrict the setup by prepeding
+      not in both it is possible to restrict the setup by prepending
       <code>.debug</code> or <code>.release</code> directly before
       <code>.output</code>, e.g.:
 <pre>
@@ -652,7 +652,7 @@ $ ctest -V -R "category/my_new_test"
       make sure that the output is what you had expected. (For complex tests,
       it may sometimes be impossible to say whether the output is correct, and
       in this case we sometimes just take it to make
-      sure that future invokations of the test yield the same results.)
+      sure that future invocations of the test yield the same results.)
     </p>
 
     <p>
index 62c2a45c65ef97121459c7fa70757fb5d579b371..17e6235376d3375effe8d6f61352b374e1e2add2 100644 (file)
@@ -357,7 +357,7 @@ void foobar ()
       particular C++ constructs). On the other hand, showing code
       snippets in the introduction risks duplicating code in two
       places, which will eventually get out of synch. Consequently,
-      this intrstrument should only be used sparingly.
+      this instrument should only be used sparingly.
     </p>
 
 
@@ -372,7 +372,7 @@ void foobar ()
       create doxygen input that contains the comments of the program as
       text, and the actual code of the programs as code snippets. You
       can see this when you look at the pages for each of the tutorials
-      where the code is indendet relative to the text.
+      where the code is indented relative to the text.
     </p>
 
     <p>
index a03ac2187ae66ea3f9de5b0476a8e9e97261e633..8f7e30a6d78f35e6a74b8057959bd3a85fd0968b 100644 (file)
@@ -869,7 +869,7 @@ DEAL_II_WITH_ZLIB
 <h2>  <code>Make.global_options</code> </h2>
 
 <p>
-  Above CMake configuration file <code>deal.IIConfig.cmake</code> is also
+  The above CMake configuration file <code>deal.IIConfig.cmake</code> is also
   available as a Makefile includable file called
   <code>Make.global_options</code>. It resides under
   <code>share/deal.II/Make.global_options</code> in the build and install

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.