Skip to content

Commit

Permalink
All other code examples use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeatty10 authored Mar 25, 2024
1 parent 760eac5 commit a29631b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/reference/node-selection/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ The `version` method selects [versioned models](/docs/collaborate/govern/model-v
```bash
dbt list --select "version:latest" # only 'latest' versions
dbt list --select "version:prerelease" # versions newer than the 'latest' version
dbt list --select version:old # versions older than the 'latest' version
dbt list --select "version:old" # versions older than the 'latest' version
dbt list --select "version:none" # models that are *not* versioned
```
Expand All @@ -381,7 +381,7 @@ The `semantic_model` method selects [semantic models](/docs/build/semantic-model
```bash
dbt list --select "semantic_model:*" # list all semantic models
dbt list --select +semantic_model:orders # list your semantic model named "orders" and all upstream resources
dbt list --select "+semantic_model:orders" # list your semantic model named "orders" and all upstream resources
```
</VersionBlock>

0 comments on commit a29631b

Please sign in to comment.