Skip to content

Commit ff4ad5f

Browse files
authored
Missing ";"
1 parent 98a2ec1 commit ff4ad5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data-explorer/kusto/query/pattern-statement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ The application inspects the error, determines that the error indicates a missin
184184
```kusto
185185
declare pattern map_ip_to_longlat = (address:string)
186186
{
187-
("10.10.10.10") = { print Lat=37.405992, Long=-122.078515 }
187+
("10.10.10.10") = { print Lat=37.405992, Long=-122.078515 };
188188
};
189189
map_ip_to_longlat("10.10.10.10")
190190
```

0 commit comments

Comments
 (0)