From 8b32c8700682722088fadc8bb76afb3ca189f238 Mon Sep 17 00:00:00 2001 From: Emil Relecto Date: Thu, 29 Jun 2023 20:30:50 +0100 Subject: [PATCH] Fix XML Doc bracket in MeshBender.cs --- Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}