diff --git a/foundations/Cargo.toml b/foundations/Cargo.toml index 08930f9..56b50ae 100644 --- a/foundations/Cargo.toml +++ b/foundations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "foundations" -description = "A Rust service foundation framework." +description = "A Rust service foundations library." version = { workspace = true } edition = { workspace = true } repository = { workspace = true } diff --git a/foundations/src/telemetry/mod.rs b/foundations/src/telemetry/mod.rs index e29ebf2..0dceaac 100644 --- a/foundations/src/telemetry/mod.rs +++ b/foundations/src/telemetry/mod.rs @@ -5,7 +5,7 @@ //! * metrics (backed by [Prometheus]) //! * memory profiling (backed by [jemalloc]) //! -//! The framework strives to minimize the bootstrap code required to set up basic telemetry for a +//! The library strives to minimize the bootstrap code required to set up basic telemetry for a //! service and provide ergonomic API for telemetry-related operations. //! //! # Initialization @@ -36,7 +36,7 @@ //! # Testing //! Telemetry is an important part of the functionality for any production-grade services and //! Foundations provides API for telemetry testing: special testing context can be created with -//! [`TelemetryContext::test`] method and framework provides a special [`with_test_telemetry`] macro +//! [`TelemetryContext::test`] method and the library provides a special [`with_test_telemetry`] macro //! to enable telemetry testing in `#[test]` and `#[tokio::test]`. //! //! [Jaeger]: https://www.jaegertracing.io/