diff --git a/Interaction/Widgets/Testing/Cxx/TestPolygonalHandleRepresentations.cxx b/Interaction/Widgets/Testing/Cxx/TestPolygonalHandleRepresentations.cxx
index e22d62eda64cdb9756bc052667c8ebd995dc48a2..48098c46332bddfba51c641213a7386fc824eac2 100644
--- a/Interaction/Widgets/Testing/Cxx/TestPolygonalHandleRepresentations.cxx
+++ b/Interaction/Widgets/Testing/Cxx/TestPolygonalHandleRepresentations.cxx
@@ -266,7 +266,7 @@ int TestPolygonalHandleRepresentations(int argc, char*argv[])
   widget[9] = CreateWidget( iren, VTK_THICKARROW_GLYPH,    560597, 5.10817e+06, 3582.44, true, "thickArrow" );
   widget[10] = CreateWidget( iren, VTK_HOOKEDARROW_GLYPH,  558266, 5.12137e+06, 2559.14, true, "hookedArrow" );
   widget[11] = CreateWidget( iren, VTK_EDGEARROW_GLYPH,    568869, 5.11028e+06, 2026.57, true, "EdgeArrow" );
-  widget[12] = CreateWidget( iren, 12,                    561753, 5.11577e+06, 3183, false, "Sphere contrained to surface", demActor, pd, true, 100.0 );
+  widget[12] = CreateWidget( iren, 12,                     561753, 5.11577e+06, 3183, false, "Sphere constrained to surface", demActor, pd, true, 100.0 );
   widget[13] = CreateWidget( iren, 13,                     562692, 5.11521e+06, 3355.65, false, "Crosshair" );
 
   renWin->SetSize(600,600);
diff --git a/Interaction/Widgets/vtkAbstractPolygonalHandleRepresentation3D.cxx b/Interaction/Widgets/vtkAbstractPolygonalHandleRepresentation3D.cxx
index 7808030b6a38d6d35001d560a15ee267bcb48aca..efaa031b0d722b6a63359346aa157f739768850c 100644
--- a/Interaction/Widgets/vtkAbstractPolygonalHandleRepresentation3D.cxx
+++ b/Interaction/Widgets/vtkAbstractPolygonalHandleRepresentation3D.cxx
@@ -321,7 +321,7 @@ void vtkAbstractPolygonalHandleRepresentation3D::WidgetInteraction(double eventP
 
       if (    this->InteractionState == vtkHandleRepresentation::Selecting )
       {
-        // If we are doing axis constrained motion, igonore the placer.
+        // If we are doing axis constrained motion, ignore the placer.
         // Can't have both the placer and an axis constraint dictating
         // handle placement.
         if (this->ConstraintAxis >= 0 || this->Constrained || !this->PointPlacer)
@@ -370,7 +370,7 @@ void vtkAbstractPolygonalHandleRepresentation3D::WidgetInteraction(double eventP
       }
       else
       {
-        // If we are doing axis constrained motion, igonore the placer.
+        // If we are doing axis constrained motion, ignore the placer.
         // Can't have both the placer and the axis constraint dictating
         // handle placement.
         if (this->ConstraintAxis >= 0 || this->Constrained || !this->PointPlacer)
diff --git a/Interaction/Widgets/vtkAbstractWidget.cxx b/Interaction/Widgets/vtkAbstractWidget.cxx
index eec5a857493c298667f93643370f5aa3943180ec..750ba295dc3e112df000b4149eb7d7b773f1e328 100644
--- a/Interaction/Widgets/vtkAbstractWidget.cxx
+++ b/Interaction/Widgets/vtkAbstractWidget.cxx
@@ -200,7 +200,7 @@ void vtkAbstractWidget::SetEnabled(int enabling)
   }
 
   // We no longer call render when enabled state changes. It's the applications
-  // resposibility to explicitly call render after changing enable state.
+  // responsibility to explicitly call render after changing enable state.
   //// Should only render if there is no parent
   //if ( this->Interactor && !this->Parent )
   //  {
diff --git a/Interaction/Widgets/vtkLinearContourLineInterpolator.h b/Interaction/Widgets/vtkLinearContourLineInterpolator.h
index e3ec22cf5af7c84b825ab159215c6ff476de74bd..6b399afea893c06f262ac818a1243c1cd215ddfb 100644
--- a/Interaction/Widgets/vtkLinearContourLineInterpolator.h
+++ b/Interaction/Widgets/vtkLinearContourLineInterpolator.h
@@ -17,7 +17,7 @@
  * @brief   Interpolates supplied nodes with line segments
  *
  * The line interpolator interpolates supplied nodes (see InterpolateLine)
- * with line segments. The finess of the curve may be controlled using
+ * with line segments. The fineness of the curve may be controlled using
  * SetMaximumCurveError and SetMaximumNumberOfLineSegments.
  *
  * @sa
diff --git a/Interaction/Widgets/vtkLogoRepresentation.cxx b/Interaction/Widgets/vtkLogoRepresentation.cxx
index 8aa3554b47d942d466948ae69f5b24ef18f57454..4160c858fa6b189f831aa36f03ec1e8f3622de26 100644
--- a/Interaction/Widgets/vtkLogoRepresentation.cxx
+++ b/Interaction/Widgets/vtkLogoRepresentation.cxx
@@ -75,7 +75,7 @@ vtkLogoRepresentation::vtkLogoRepresentation()
   this->ImageProperty->SetOpacity(0.25);
   this->TextureActor->SetProperty(this->ImageProperty);
 
-  // Set up parameters from thw superclass
+  // Set up parameters from the superclass
   double size[2];
   this->GetSize(size);
   this->Position2Coordinate->SetValue(0.04*size[0], 0.04*size[1]);
diff --git a/Interaction/Widgets/vtkPointHandleRepresentation3D.cxx b/Interaction/Widgets/vtkPointHandleRepresentation3D.cxx
index e6faf1e8a83c5abc8805d703c3a250e3d62dc750..daa6ceabf7846e5f67deea7350fd39c369ac30cc 100644
--- a/Interaction/Widgets/vtkPointHandleRepresentation3D.cxx
+++ b/Interaction/Widgets/vtkPointHandleRepresentation3D.cxx
@@ -413,7 +413,7 @@ void vtkPointHandleRepresentation3D::WidgetInteraction(double eventPos[2])
       {
         vtkDebugMacro( << "Processing widget interaction for Select mode" );
 
-        // If we are doing axis constrained motion, igonore the placer.
+        // If we are doing axis constrained motion, ignore the placer.
         // Can't have both the placer and an axis constraint dictating
         // handle placement.
         if (this->ConstraintAxis >= 0 || this->Constrained || !this->PointPlacer)
@@ -467,7 +467,7 @@ void vtkPointHandleRepresentation3D::WidgetInteraction(double eventPos[2])
       {
         vtkDebugMacro( << "Processing widget interaction for translate" );
 
-        // If we are doing axis constrained motion, igonore the placer.
+        // If we are doing axis constrained motion, ignore the placer.
         // Can't have both the placer and the axis constraint dictating
         // handle placement.
         if (this->ConstraintAxis >= 0 || this->Constrained || !this->PointPlacer)