Show
Ignore:
Timestamp:
12/10/07 18:30:18 (5 years ago)
Author:
robert
Message:

From Roland Smeenk, "Attached you will find a large set of small typo fixes (mainly in the comments)."

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • OpenSceneGraph/trunk/examples/osgprerendercubemap/osgprerendercubemap.cpp

    r6941 r7648  
    143143        virtual void operator()(osg::Node* node, osg::NodeVisitor* nv) 
    144144        { 
    145             // first update subgraph to make sure objects are all moved into postion 
     145            // first update subgraph to make sure objects are all moved into position 
    146146            traverse(node,nv); 
    147147 
     
    196196        virtual void operator()(osg::Node* node, osg::NodeVisitor* nv) 
    197197        { 
    198             // first update subgraph to make sure objects are all moved into postion 
     198            // first update subgraph to make sure objects are all moved into position 
    199199            traverse(node,nv); 
    200200             
     
    304304    arguments.getApplicationUsage()->addCommandLineOption("--fb","Use FrameBuffer for render to texture."); 
    305305    arguments.getApplicationUsage()->addCommandLineOption("--pbuffer","Use Pixel Buffer for render to texture, where supported."); 
    306     arguments.getApplicationUsage()->addCommandLineOption("--window","Use a seperate Window for render to texture."); 
     306    arguments.getApplicationUsage()->addCommandLineOption("--window","Use a separate Window for render to texture."); 
    307307    arguments.getApplicationUsage()->addCommandLineOption("--width","Set the width of the render to texture"); 
    308308    arguments.getApplicationUsage()->addCommandLineOption("--height","Set the height of the render to texture"); 
     
    334334    arguments.reportRemainingOptionsAsUnrecognized(); 
    335335 
    336     // report any errors if they have occured when parsing the program aguments. 
     336    // report any errors if they have occurred when parsing the program arguments. 
    337337    if (arguments.errors()) 
    338338    {