Update search-filter-sort-packages.mdx#373
Open
gweinstein-cloudsmith wants to merge 1 commit intomainfrom
Open
Update search-filter-sort-packages.mdx#373gweinstein-cloudsmith wants to merge 1 commit intomainfrom
gweinstein-cloudsmith wants to merge 1 commit intomainfrom
Conversation
Fixed a few instances where we used a curly single quote instead of an straight single quote to set off search text (e.g. last_downloaded:’1 day ago’). These are different characters, and the straight version is how Terraform expects it.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR aims to make the search query examples Terraform-compatible by replacing curly single quotes with straight single quotes in search-filter-sort-packages.mdx.
Changes:
- Updated the
uploadedandlast_downloadedquery examples to use straight single quotes for relative time filters. - Adjusted date-literal examples in the same table rows (but currently inconsistently).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+37
to
+38
| |Uploaded Date (`uploaded`)|`uploaded:'1 day ago'` (uploaded more than one day ago) `uploaded:’August 14, 2019 EST’` (uploaded on Aug 14th)| | ||
| |Last Downloaded Date (`last_downloaded`)|`last_downloaded:'1 day ago'` (downloaded more than one day ago) 'last_downloaded:’August 14, 2026 EST'` (downloaded on Aug 14th)| |
Comment on lines
+37
to
+38
| |Uploaded Date (`uploaded`)|`uploaded:'1 day ago'` (uploaded more than one day ago) `uploaded:’August 14, 2019 EST’` (uploaded on Aug 14th)| | ||
| |Last Downloaded Date (`last_downloaded`)|`last_downloaded:'1 day ago'` (downloaded more than one day ago) 'last_downloaded:’August 14, 2026 EST'` (downloaded on Aug 14th)| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixed a few instances where we used a curly single quote instead of an straight single quote to set off search text (e.g. last_downloaded:’1 day ago’). These are different characters, and the straight version is how Terraform expects it.