Skip to content

Commit ca326b2

Browse files
Update README.md (#99)
Added missing parenthesis
1 parent d59b2e1 commit ca326b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -600,19 +600,19 @@ Returns the number of periods since a specified date or to `now`.
600600
Usage:
601601

602602
```sql
603-
{{ dbt_date.periods_since("my_date_column", period_name="day" }}
603+
{{ dbt_date.periods_since("my_date_column", period_name="day") }}
604604
```
605605

606606
or,
607607

608608
```sql
609-
{{ dbt_date.periods_since("my_timestamp_column", period_name="minute" }}
609+
{{ dbt_date.periods_since("my_timestamp_column", period_name="minute") }}
610610
```
611611

612612
or, optionally, you can override the default timezone:
613613

614614
```sql
615-
{{ dbt_date.periods_since("my_timestamp_column", period_name="minute", tz="UTC" }}
615+
{{ dbt_date.periods_since("my_timestamp_column", period_name="minute", tz="UTC") }}
616616
```
617617

618618
### [round_timestamp](macros/calendar_date/round_timestamp.sql)(`timestamp`)

0 commit comments

Comments
 (0)