Skip to content

Commit

Permalink
Fix for isl-org#7135
Browse files Browse the repository at this point in the history
 * Add the missing comma before the first argument's name
 * Add the missing spaces in the function description
  • Loading branch information
joseph-sch authored Jan 13, 2025
1 parent 1e7b174 commit 5261055
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/pybind/t/geometry/trianglemesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -344,9 +344,9 @@ This example shows how to create a hemisphere from a sphere::
// Triangle Mesh's creation APIs.
triangle_mesh
.def_static("create_box", &TriangleMesh::CreateBox,
"Create a box triangle mesh. One vertex of the box"
"will be placed at the origin and the box aligns"
"with the positive x, y, and z axes."
"Create a box triangle mesh. One vertex of the box "
"will be placed at the origin and the box aligns "
"with the positive x, y, and z axes.",
"width"_a = 1.0,
"height"_a = 1.0, "depth"_a = 1.0,
"float_dtype"_a = core::Float32,
Expand Down

0 comments on commit 5261055

Please sign in to comment.