Skip to content

Commit ff996c2

Browse files
authored
Merge pull request #4647 from ClickHouse/fix-parameter-misspellings
Updating files with misspellings for "parameter"
2 parents e675f21 + 3c39f2b commit ff996c2

25 files changed

+25
-25
lines changed

i18n/jp/docusaurus-plugin-content-docs/current/cloud/reference/01_changelog/01_changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_label: 'Cloud Changelog'
44
title: 'Cloud Changelog'
55
description: 'ClickHouse Cloud changelog providing descriptions of what is new in each ClickHouse Cloud release'
66
doc_type: 'changelog'
7-
keywords: ['ClickHouse Cloud', 'changelog', 'cloud releases', 'what\'s new', 'cloud updates']
7+
keywords: ['ClickHouse Cloud', 'changelog', 'cloud releases', 'cloud updates']
88
---
99

1010
import Image from '@theme/IdealImage';

i18n/jp/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesChangesToGrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The following query calculates `changes` values on the grid [90, 105, 120, 135,
2626

2727
```sql
2828
WITH
29-
-- NOTE: the gap between 130 and 190 is to show how values are filled for ts = 180 according to window paramater
29+
-- NOTE: the gap between 130 and 190 is to show how values are filled for ts = 180 according to window parameter
3030
[110, 120, 130, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3131
[1, 1, 3, 5, 5, 8, 12, 13]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3232
90 AS start_ts, -- start of timestamp grid

i18n/jp/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesDeltaToGrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Example:
2626

2727
```sql
2828
WITH
29-
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window paramater
29+
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window parameter
3030
[110, 120, 130, 140, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3131
[1, 1, 3, 4, 5, 5, 8, 12, 13]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3232
90 AS start_ts, -- start of timestamp grid

i18n/jp/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesInstantDeltaToGrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Example:
2626

2727
```sql
2828
WITH
29-
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window paramater
29+
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window parameter
3030
[110, 120, 130, 140, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3131
[1, 1, 3, 4, 5, 5, 8, 12, 13]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3232
90 AS start_ts, -- start of timestamp grid

i18n/jp/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesInstantRateToGrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Example:
2626

2727
```sql
2828
WITH
29-
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window paramater
29+
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window parameter
3030
[110, 120, 130, 140, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3131
[1, 1, 3, 4, 5, 5, 8, 12, 13]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3232
90 AS start_ts, -- start of timestamp grid

i18n/jp/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesPredictLinearToGrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Example:
2727

2828
```sql
2929
WITH
30-
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window paramater
30+
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window parameter
3131
[110, 120, 130, 140, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3232
[1, 1, 3, 4, 5, 5, 8, 12, 13]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3333
90 AS start_ts, -- start of timestamp grid

i18n/jp/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesRateToGrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Example:
2626

2727
```sql
2828
WITH
29-
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window paramater
29+
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to window parameter
3030
[110, 120, 130, 140, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3131
[1, 1, 3, 4, 5, 5, 8, 12, 13]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3232
90 AS start_ts, -- start of timestamp grid

i18n/jp/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesResampleToGridWithStaleness.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Example:
2828

2929
```sql
3030
WITH
31-
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to staleness window paramater
31+
-- NOTE: the gap between 140 and 190 is to show how values are filled for ts = 150, 165, 180 according to staleness window parameter
3232
[110, 120, 130, 140, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3333
[1, 1, 3, 4, 5, 5, 8, 12, 13]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3434
90 AS start_ts, -- start of timestamp grid

i18n/jp/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesResetsToGrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Aggregate function that takes time series data as pairs of timestamps and values
2626

2727
```sql
2828
WITH
29-
-- NOTE: the gap between 130 and 190 is to show how values are filled for ts = 180 according to window paramater
29+
-- NOTE: the gap between 130 and 190 is to show how values are filled for ts = 180 according to window parameter
3030
[110, 120, 130, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3131
[1, 3, 2, 6, 6, 4, 2, 0]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3232
90 AS start_ts, -- start of timestamp grid

i18n/ru/docusaurus-plugin-content-docs/current/sql-reference/aggregate-functions/reference/timeSeriesChangesToGrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
```sql
2828
WITH
29-
-- NOTE: the gap between 130 and 190 is to show how values are filled for ts = 180 according to window paramater
29+
-- NOTE: the gap between 130 and 190 is to show how values are filled for ts = 180 according to window parameter
3030
[110, 120, 130, 190, 200, 210, 220, 230]::Array(DateTime) AS timestamps,
3131
[1, 1, 3, 5, 5, 8, 12, 13]::Array(Float32) AS values, -- array of values corresponding to timestamps above
3232
90 AS start_ts, -- start of timestamp grid

0 commit comments

Comments
 (0)