Skip to content

Commit

Permalink
more consistent word
Browse files Browse the repository at this point in the history
Signed-off-by: Takeshi Yoneda <[email protected]>
  • Loading branch information
mathetake committed Nov 8, 2024
1 parent 6bca4a7 commit e110ee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/extensions/dynamic_modules/sdk/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pub trait HttpFilter {} // TODO.
// can write a unit tests for their HttpFilterConfig implementations.
#[derive(Debug, Clone, Copy)]
pub struct EnvoyHttpFilterConfig {
raw_addr: abi::envoy_dynamic_module_type_http_filter_config_envoy_ptr,
raw_ptr: abi::envoy_dynamic_module_type_http_filter_config_envoy_ptr,
}

#[no_mangle]
Expand All @@ -140,7 +140,7 @@ unsafe extern "C" fn envoy_dynamic_module_on_http_filter_config_new(
};

let envoy_filter_config = EnvoyHttpFilterConfig {
raw_addr: envoy_filter_config_ptr,
raw_ptr: envoy_filter_config_ptr,
};

let filter_config =
Expand Down

0 comments on commit e110ee2

Please sign in to comment.