Browse Source

[DOCS] Fix Gsub processor snippet (#61720)

James Rodewig 5 years ago
parent
commit
b0336111af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/ingest/processors/gsub.asciidoc

+ 1 - 1
docs/reference/ingest/processors/gsub.asciidoc

@@ -25,7 +25,7 @@ include::common-options.asciidoc[]
 {
   "gsub": {
     "field": "field1",
-    "pattern": "\.",
+    "pattern": "\\.",
     "replacement": "-"
   }
 }