Skip to content

Commit

Permalink
chore(sdk): fix typo in module's name
Browse files Browse the repository at this point in the history
  • Loading branch information
woshilapin authored and davidB committed Jan 27, 2025
1 parent 94c4a54 commit fd66734
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tracing-opentelemetry-instrumentation-sdk/src/http/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub mod grpc_client;
pub mod grpc_server;
pub mod http_server;
mod opentelemety_http;
mod opentelemetry_http;

mod tools;
pub use tools::*;
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::borrow::Cow;
use http::{HeaderMap, Method, Uri, Version};
use opentelemetry::Context;

use super::opentelemety_http::{HeaderExtractor, HeaderInjector};
use super::opentelemetry_http::{HeaderExtractor, HeaderInjector};

pub fn inject_context(context: &Context, headers: &mut http::HeaderMap) {
let mut injector = HeaderInjector(headers);
Expand Down

0 comments on commit fd66734

Please sign in to comment.