From e625531390ecc767babc5b8ab4ffa9fbd888e343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=90=A2lank?= Date: Wed, 7 Jan 2026 00:25:29 -0500 Subject: [PATCH] Fix typo in Sample_SoloMesh.cpp (#800) build -> built --- RecastDemo/Source/Sample_SoloMesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RecastDemo/Source/Sample_SoloMesh.cpp b/RecastDemo/Source/Sample_SoloMesh.cpp index 174a4e15..346a1541 100644 --- a/RecastDemo/Source/Sample_SoloMesh.cpp +++ b/RecastDemo/Source/Sample_SoloMesh.cpp @@ -404,7 +404,7 @@ bool Sample_SoloMesh::handleBuild() m_cfg.detailSampleDist = m_detailSampleDist < 0.9f ? 0 : m_cellSize * m_detailSampleDist; m_cfg.detailSampleMaxError = m_cellHeight * m_detailSampleMaxError; - // Set the area where the navigation will be build. + // Set the area where the navigation will be built. // Here the bounds of the input mesh are used, but the // area could be specified by an user defined box, etc. rcVcopy(m_cfg.bmin, bmin);