Skip to content

Commit

Permalink
docs: Fix the wrong log-namespace key.
Browse files Browse the repository at this point in the history
  • Loading branch information
iFurySt committed Aug 5, 2024
1 parent 210ff09 commit b2ec158
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/vector-common/src/byte_size_of.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub trait ByteSizeOf {
///
/// This function returns the total number of bytes that
/// [`std::mem::size_of`] does in addition to any interior allocated
/// bytes. It default implementation is `std::mem::size_of` +
/// bytes. Its default implementation is `std::mem::size_of` +
/// `ByteSizeOf::allocated_bytes`.
fn size_of(&self) -> usize {
mem::size_of_val(self) + self.allocated_bytes()
Expand Down
2 changes: 1 addition & 1 deletion website/content/en/blog/log-namespacing.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,4 @@ be used.
[global log schema]: /docs/reference/configuration/global-options/#log_schema
[set_semantic_meaning]: /docs/reference/vrl/functions/#set_semantic_meaning
[remap]: /docs/reference/configuration/transforms/remap/
[global config]: /docs/reference/configuration/global-options/#schema.log_namespacing
[global config]: /docs/reference/configuration/global-options/#schema.log_namespace
2 changes: 1 addition & 1 deletion website/cue/reference/configuration.cue
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ configuration: {
type: object: {
examples: []
options: {
log_namespacing: {
log_namespace: {
common: false
description: """
Globally enables / disables log namespacing. See [Log Namespacing](\(urls.log_namespacing_blog))
Expand Down

0 comments on commit b2ec158

Please sign in to comment.