Skip to content

Commit

Permalink
Remove unnecessary bracket (#6089)
Browse files Browse the repository at this point in the history
## What are you changing in this pull request and why?

Remove unnecessary bracket in adapter.drop_schema documentation. 
There are 2 opening brackets but 3 closing brackets

Co-authored-by: Leona B. Campbell <[email protected]>
  • Loading branch information
tkiehn and runleonarun authored Sep 19, 2024
1 parent 361dea2 commit 658f509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/reference/dbt-jinja-functions/adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Drops a schema (or equivalent) in the target database. If the target schema does

```sql

{% do adapter.drop_schema(api.Relation.create(database=target.database, schema="my_schema"))) %}
{% do adapter.drop_schema(api.Relation.create(database=target.database, schema="my_schema")) %}
```

</File>
Expand Down

0 comments on commit 658f509

Please sign in to comment.