Skip to content

Commit

Permalink
Fix argument case
Browse files Browse the repository at this point in the history
  • Loading branch information
fsimonis committed Dec 13, 2023
1 parent 75ade43 commit 2395450
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ mod ffi {
fn set_mesh_access_region(
self: Pin<&mut Participant>,
mesh_name: &str,
boundingBox: &[f64],
bounding_box: &[f64],
);
fn get_mesh_vertex_ids_and_coordinates(
self: &Participant,
Expand Down Expand Up @@ -282,10 +282,10 @@ impl Participant {

// Direct Access

pub fn set_mesh_access_region(&mut self, mesh_name: &str, boundingBox: &[f64]) {
pub fn set_mesh_access_region(&mut self, mesh_name: &str, bounding_box: &[f64]) {
self.internal
.pin_mut()
.set_mesh_access_region(mesh_name, boundingBox)
.set_mesh_access_region(mesh_name, bounding_box)
}
pub fn get_mesh_vertex_ids_and_coordinates(
&self,
Expand Down

0 comments on commit 2395450

Please sign in to comment.