fix: replace /* ... */ with // ... in doxygen code blocks to prevent premature comment termination
CI / Build & Test (push) Failing after 31s
CI / Release Build (push) Failing after 1m31s

This commit is contained in:
茂之钳
2026-07-24 11:12:49 +00:00
parent ac4c4300ed
commit fba37f7065
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ using core::AABB3D;
*
* @code{.cpp"}
* auto circle = NurbsCurve::create_circle(Point3D(0,0,0), 0.5);
* auto helix = NurbsCurve::create_helix(/* ... */);
* auto helix = NurbsCurve::create_helix(// ...);
* auto pipe = sweep(circle, helix);
* @endcode
*