Skip to content

Commit

Permalink
make capturing docs easier to read
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Feb 13, 2024
1 parent 1d258b6 commit 6b483c6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/kv/mod.rs
Expand Up @@ -45,13 +45,13 @@
//!
//! The following capturing modifiers are supported:
//!
//! - `:?`: `Debug`.
//! - `:debug`: `Debug`.
//! - `:%`: `Display`.
//! - `:display`: `Display`.
//! - `:error`: `std::error::Error` (requires the `kv_unstable_error` feature).
//! - `:sval`: `sval::Value` (requires the `kv_unstable_sval` feature).
//! - `:serde`: `serde::Serialize` (requires the `kv_unstable_serde` feature).
//! - `:?` will capture the value using `Debug`.
//! - `:debug` will capture the value using `Debug`.
//! - `:%` will capture the value using `Display`.
//! - `:display` will capture the value using `Display`.
//! - `:error` will capture the value using `std::error::Error` (requires the `kv_unstable_error` feature).
//! - `:sval` will capture the value using `sval::Value` (requires the `kv_unstable_sval` feature).
//! - `:serde` will capture the value using `serde::Serialize` (requires the `kv_unstable_serde` feature).
//!
//! ## Working with key-values on log records
//!
Expand Down

0 comments on commit 6b483c6

Please sign in to comment.