Skip to content

Commit

Permalink
fix: Update quickstart.gs for the tabs in Docs feature (#480)
Browse files Browse the repository at this point in the history
This is part of an ongoing effort to update Docs API guides/documentation for the tabs feature.
  • Loading branch information
lfelpi-google authored Aug 15, 2024
1 parent e498743 commit efdc28b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quickstart/quickstart.gs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function printDocTitle() {
const documentId = '195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE';
try {
// Get the document using document id
const doc = Docs.Documents.get(documentId);
const doc = Docs.Documents.get({'includeTabsContent': true}, documentId);
// Log the title of document.
console.log('The title of the doc is: %s', doc.title);
} catch (err) {
Expand Down

0 comments on commit efdc28b

Please sign in to comment.