Skip to content

Commit 8b1a015

Browse files
committed
1500 - Change TypeTable in WordDelimiterTokenFilter from string to List<string>
1 parent 621f1cb commit 8b1a015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Nest/Domain/Analysis/TokenFilter/WordDelimiterTokenFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public WordDelimiterTokenFilter()
4848
public string ProtectedWordsPath { get; set; }
4949

5050
[JsonProperty("type_table")]
51-
public string TypeTable { get; set; }
51+
public List<string> TypeTable { get; set; }
5252

5353
[JsonProperty("type_table_path")]
5454
public string TypeTablePath { get; set; }

0 commit comments

Comments
 (0)