Skip to content

Commit d97c705

Browse files
authored
Chore: use paren syntax in signals docs (#4989)
1 parent 960bacb commit d97c705

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/guides/signals.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ This example specifies that the `random_signal()` should evaluate once with a th
6363
MODEL (
6464
name example.signal_model,
6565
kind FULL,
66-
signals [
66+
signals (
6767
random_signal(threshold := 0.5), # specify threshold value
68-
]
68+
)
6969
);
7070

7171
SELECT 1
@@ -108,9 +108,9 @@ MODEL (
108108
time_column ds,
109109
),
110110
start '2 week ago',
111-
signals [
111+
signals (
112112
one_week_ago(),
113-
]
113+
)
114114
);
115115

116116

0 commit comments

Comments
 (0)