From 7fba0a1127af315f56545e3e219b1f91ca4fd4d6 Mon Sep 17 00:00:00 2001 From: Sneha Sridharan <114741980+sneha-github96@users.noreply.github.com> Date: Wed, 1 Nov 2023 13:15:34 +0530 Subject: [PATCH] Update index.md Minor change in "List all versions for all platform and channel combinations." - replaced period with colon. In the request URL of "List all versions for Windows in stable, beta, and dev channels:", there is an additional forward slash (/) before the filter param. --- site/en/docs/versionhistory/examples/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/en/docs/versionhistory/examples/index.md b/site/en/docs/versionhistory/examples/index.md index 528fbaf424e8..f2d155da8d78 100644 --- a/site/en/docs/versionhistory/examples/index.md +++ b/site/en/docs/versionhistory/examples/index.md @@ -22,7 +22,7 @@ List all platform and channel combinations: GET https://versionhistory.googleapis.com/v1/chrome/platforms/all/channels ``` -List all versions for all platform and channel combinations. +List all versions for all platform and channel combinations: ```http GET https://versionhistory.googleapis.com/v1/chrome/platforms/all/channels/all/versions @@ -46,7 +46,7 @@ GET https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stabl List all versions for Windows in `stable`, `beta`, and `dev` channels: ```http -GET https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/all/versions/?filter=channel<=dev +GET https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/all/versions?filter=channel<=dev ``` ## Release @@ -73,4 +73,4 @@ List all releases for Windows in the `stable` channel that reached 100% rollout: ```http GET https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stable/versions/all/releases?filter=fraction=1 -``` \ No newline at end of file +```