diff --git a/Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs b/Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs index da60b61..8792881 100644 --- a/Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs +++ b/Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs @@ -75,7 +75,7 @@ public void SetInterval(CubicBezierCurve curve) { /// outside the given interval. /// /// The to bend the source mesh along. - /// Distance from the spline start to place the mesh minimum X. + /// Distance from the spline start to place the mesh minimum X. /// Distance from the spline start to stop deforming the source mesh. public void SetInterval(Spline spline, float intervalStart, float intervalEnd = 0) { if (this.spline == spline && this.intervalStart == intervalStart && this.intervalEnd == intervalEnd) return; @@ -326,4 +326,4 @@ private void FillStretch() { } -} \ No newline at end of file +}