Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(sdk): fix typo in module's name #205

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading