Skip to content

Commit

Permalink
Quick fix to Grok doc
Browse files Browse the repository at this point in the history
  • Loading branch information
philrz committed Jan 30, 2024
1 parent 7652f7b commit 0f9b197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion versioned_docs/version-v1.12.0/language/functions/grok.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ grok(p: string, s: string, definitions: string) -> any

The _grok_ function parses a string `s` using grok pattern `p` and returns
a record containing the parsed fields. The syntax for pattern `p`
is `{%pattern:field_name}` where _pattern_ is the name of the pattern
is `%{pattern:field_name}` where _pattern_ is the name of the pattern
to match in `s` and _field_name_ is the resultant field name of the capture
value.

Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-v1.13.0/language/functions/grok.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ grok(p: string, s: string, definitions: string) -> any

The _grok_ function parses a string `s` using grok pattern `p` and returns
a record containing the parsed fields. The syntax for pattern `p`
is `{%pattern:field_name}` where _pattern_ is the name of the pattern
is `%{pattern:field_name}` where _pattern_ is the name of the pattern
to match in `s` and _field_name_ is the resultant field name of the capture
value.

Expand Down

0 comments on commit 0f9b197

Please sign in to comment.