Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

samples: Move sample code end tag to the correct line for GetFeed #583

Merged
merged 13 commits into from
Dec 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/getFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ async function main(feedName) {
const result = await client.getFeed(request);
// Do things with with the response.
console.log(util.inspect(result, {depth: null}));
// [END asset_quickstart_get_feed]
}
getFeed();
// [END asset_quickstart_get_feed]
}

main(...process.argv.slice(2)).catch(err => {
Expand Down