From b02712f9cb07d6630295fbfa03a2b9617e0e49a8 Mon Sep 17 00:00:00 2001 From: MaximAL Date: Tue, 4 Feb 2025 12:53:38 +0300 Subject: [PATCH] Change comments in line protocol syntacs to be self-descriptive `#` --- content/influxdb/v2/reference/syntax/line-protocol.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/influxdb/v2/reference/syntax/line-protocol.md b/content/influxdb/v2/reference/syntax/line-protocol.md index 63a2fb13de..12136ef988 100644 --- a/content/influxdb/v2/reference/syntax/line-protocol.md +++ b/content/influxdb/v2/reference/syntax/line-protocol.md @@ -27,11 +27,11 @@ It is a text-based format that provides the measurement, tag set, field set, and - [Naming restrictions](#naming-restrictions) - [Duplicate points](#duplicate-points) -```js -// Syntax +```python +# Syntax [,=[,=]] =[,=] [] -// Example +# Example myMeasurement,tag1=value1,tag2=value2 fieldKey="fieldValue" 1556813561098000000 ```