Skip to content

Commit

Permalink
Some minor renames in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
inikulin committed Jan 20, 2024
1 parent 637dd1c commit 18434d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion foundations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions foundations/src/telemetry/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/
Expand Down

0 comments on commit 18434d9

Please sign in to comment.