Revision: 54143
          http://brlcad.svn.sourceforge.net/brlcad/?rev=54143&view=rev
Author:   brlcad
Date:     2013-01-08 18:47:45 +0000 (Tue, 08 Jan 2013)
Log Message:
-----------
apply patch from amit.daBeast 
(http://www.google-melange.com/gci/task/view/google/gci2012/8103205) fixing 
some spelling mistakes

Modified Paths:
--------------
    brlcad/trunk/misc/nsis/brlcad.nsi
    brlcad/trunk/src/burst/grid.c
    brlcad/trunk/src/conv/g-egg.c
    brlcad/trunk/src/conv/g-shell-rect.c
    brlcad/trunk/src/conv/g-var.c
    brlcad/trunk/src/conv/g-vrml.c
    brlcad/trunk/src/conv/g-x3d.c
    brlcad/trunk/src/conv/g-xxx.c
    brlcad/trunk/src/conv/g-xxx_facets.c
    brlcad/trunk/src/conv/walk_example.c
    brlcad/trunk/src/libged/joint.c
    brlcad/trunk/src/librt/bundle.c

Modified: brlcad/trunk/misc/nsis/brlcad.nsi
===================================================================
--- brlcad/trunk/misc/nsis/brlcad.nsi   2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/misc/nsis/brlcad.nsi   2013-01-08 18:47:45 UTC (rev 54143)
@@ -9,7 +9,7 @@
 
 ;--------------------------------
 
-; Modurn User Interface
+; Modern User Interface
 !include "MUI.nsh"
 !include "FileFunc.nsh"
 !include "WordFunc.nsh"

Modified: brlcad/trunk/src/burst/grid.c
===================================================================
--- brlcad/trunk/src/burst/grid.c       2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/src/burst/grid.c       2013-01-08 18:47:45 UTC (rev 54143)
@@ -687,7 +687,7 @@
            } else        /* Interior burst point: no fuzing offset. */
                VMOVE(burstpt, bp->pt_outhit->hit_point);
 
-       /* Only generate burst rays if nspallrays is greater then
+       /* Only generate burst rays if nspallrays is greater than
           zero. */
        if (nspallrays < 1)
            return      1;

Modified: brlcad/trunk/src/conv/g-egg.c
===================================================================
--- brlcad/trunk/src/conv/g-egg.c       2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/src/conv/g-egg.c       2013-01-08 18:47:45 UTC (rev 54143)
@@ -312,7 +312,7 @@
               tree_state.ts_tol->dist, tree_state.ts_tol->perp);
     }
 
-    /* print the egg header shtuff, including the command line to execute it */
+    /* print the egg header stuff, including the command line to execute it */
     fprintf(gcvwriter.fp, "<CoordinateSystem> { Z-Up }\n\n");
     fprintf(gcvwriter.fp, "<Comment> {\n  \"%s", *argv);
     for (i=1; i<argc; i++)

Modified: brlcad/trunk/src/conv/g-shell-rect.c
===================================================================
--- brlcad/trunk/src/conv/g-shell-rect.c        2013-01-08 03:49:27 UTC (rev 
54142)
+++ brlcad/trunk/src/conv/g-shell-rect.c        2013-01-08 18:47:45 UTC (rev 
54143)
@@ -22,7 +22,7 @@
  *
  * This routine creates an single NMG shell from an object by
  * raytracing and using the hit points as vertices in the shell.
- * Raytracing is doe in the Y-direction primarily. The -r option
+ * Raytracing is done in the Y-direction primarily. The -r option
  * requests raytracing in the X and Z directions to refine the shape
  * of the shell.
  *
@@ -593,7 +593,7 @@
        }
     }
 
-    /* Don't allow moving the vertex normalward more than a cell width.
+    /* Don't allow moving the vertex more than a cell width along the normal.
      * If the point should have been there, the original rays should have 
caught it.
      */
     if (hit1_v) {

Modified: brlcad/trunk/src/conv/g-var.c
===================================================================
--- brlcad/trunk/src/conv/g-var.c       2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/src/conv/g-var.c       2013-01-08 18:47:45 UTC (rev 54143)
@@ -480,10 +480,10 @@
        fprintf(stderr, ">> mesh count: %d\n", mesh_count);
     }
 
-    /* writeout header */
+    /* write out header */
     write_header(dbip);
 
-    /* writeout meshes */
+    /* write out meshes */
     write_mesh_data();
 
     /* finish */

Modified: brlcad/trunk/src/conv/g-vrml.c
===================================================================
--- brlcad/trunk/src/conv/g-vrml.c      2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/src/conv/g-vrml.c      2013-01-08 18:47:45 UTC (rev 54143)
@@ -21,7 +21,7 @@
 /** @file conv/g-vrml.c
  *
  * Program to convert a BRL-CAD model (in a .g file) to a VRML (2.0)
- * facetted model by calling on the NMG booleans.
+ * faceted model by calling on the NMG booleans.
  *
  */
 

Modified: brlcad/trunk/src/conv/g-x3d.c
===================================================================
--- brlcad/trunk/src/conv/g-x3d.c       2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/src/conv/g-x3d.c       2013-01-08 18:47:45 UTC (rev 54143)
@@ -20,7 +20,7 @@
  */
 /** @file conv/g-x3d.c
  *
- * Program to convert a BRL-CAD model (in a .g file) to a X3D facetted
+ * Program to convert a BRL-CAD model (in a .g file) to a X3D faceted
  * model by calling on the NMG booleans. This program is a modified
  * version of g-vrml (authored by John R. Anderson).
  *

Modified: brlcad/trunk/src/conv/g-xxx.c
===================================================================
--- brlcad/trunk/src/conv/g-xxx.c       2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/src/conv/g-xxx.c       2013-01-08 18:47:45 UTC (rev 54143)
@@ -208,7 +208,7 @@
  *      @param curtree
  *
  *      @return TREE_NULL if data in curtree was "stolen", otherwise 
db_walk_tree will
- *      clean up the dta in the union tree * that is returned
+ *      clean up the data in the union tree * that is returned
  *
  * If it wants to retain the data in curtree it can by returning TREE_NULL.  
Otherwise
  * db_walk_tree will clean up the data in the union tree * that is returned.

Modified: brlcad/trunk/src/conv/g-xxx_facets.c
===================================================================
--- brlcad/trunk/src/conv/g-xxx_facets.c        2013-01-08 03:49:27 UTC (rev 
54142)
+++ brlcad/trunk/src/conv/g-xxx_facets.c        2013-01-08 18:47:45 UTC (rev 
54143)
@@ -20,7 +20,7 @@
  */
 /** @file conv/g-xxx_facets.c
  *
- * Program to convert a BRL-CAD model (in a .g file) to a facetted
+ * Program to convert a BRL-CAD model (in a .g file) to a faceted
  * format by calling on the NMG booleans.  Based on g-stl.c.
  *
  */
@@ -216,7 +216,7 @@
     return 0;
 }
 
-/* routine to output the facetted NMG representation of a BRL-CAD region */
+/* routine to output the faceted NMG representation of a BRL-CAD region */
 static void
 output_nmg(struct nmgregion *r, const struct db_full_path *pathp, int 
UNUSED(region_id), int UNUSED(material_id))
 {

Modified: brlcad/trunk/src/conv/walk_example.c
===================================================================
--- brlcad/trunk/src/conv/walk_example.c        2013-01-08 03:49:27 UTC (rev 
54142)
+++ brlcad/trunk/src/conv/walk_example.c        2013-01-08 18:47:45 UTC (rev 
54143)
@@ -147,7 +147,7 @@
  *     @param curtree
  *
  *     @return TREE_NULL if data in curtree was "stolen", otherwise 
db_walk_tree will
- *     clean up the dta in the union tree * that is returned
+ *     clean up the data in the union tree * that is returned
  *
  * If it wants to retain the data in curtree it can by returning TREE_NULL.  
Otherwise
  * db_walk_tree will clean up the data in the union tree * that is returned.

Modified: brlcad/trunk/src/libged/joint.c
===================================================================
--- brlcad/trunk/src/libged/joint.c     2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/src/libged/joint.c     2013-01-08 18:47:45 UTC (rev 54143)
@@ -2771,7 +2771,7 @@
                      pri_weights[pri], new_eval);
     }
     /*
-     * if the new evaluation is worse then the original, back off
+     * if the new evaluation is worse than the original, back off
      * this modification, set the constraint such that this freedom
      * of this joint won't be used next time through part_solve.
      */
@@ -2977,7 +2977,7 @@
 
     for (count=0; count < loops; count++) {
        /*
-        * Clear all constrain flags.
+        * Clear all constraint flags.
         */
        for (BU_LIST_FOR(hp, hold, &hold_head)) {
            struct jointH *jh;
@@ -3009,7 +3009,7 @@
     if (count < loops) {
        for (count = 0; count < loops; count++) {
            /*
-            * Clear all constrain flags.
+            * Clear all constraint flags.
             */
            for (BU_LIST_FOR(hp, hold, &hold_head)) {
                struct jointH *jh;

Modified: brlcad/trunk/src/librt/bundle.c
===================================================================
--- brlcad/trunk/src/librt/bundle.c     2013-01-08 03:49:27 UTC (rev 54142)
+++ brlcad/trunk/src/librt/bundle.c     2013-01-08 18:47:45 UTC (rev 54143)
@@ -618,7 +618,7 @@
      * callback functions differ from their general user defined
      * counterparts by detaching the ray hit partition list and
      * segment list and attaching it to a partition bundle. Users can
-     * define there own functions but should remember to hi-jack the
+     * define their own functions but should remember to hi-jack the
      * partition and segment list or the single ray handling function
      * will return memory allocated to these list prior to the bundle
      * b_hit() routine.

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS
and more. Get SQL Server skills now (including 2012) with LearnDevNow -
200+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only - learn more at:
http://p.sf.net/sfu/learnmore_122512
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to