Skip to content

Commit

Permalink
Merge pull request #151 from ndaidong/3.1.0
Browse files Browse the repository at this point in the history
Update examples
  • Loading branch information
ndaidong committed Sep 19, 2022
2 parents 45e75cb + bacfae9 commit 1bcba39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/node-oembed-parser/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app.get('/', async (req, res) => {
const data = await extract(url)
return res.json({
error: 0,
message: 'article has been extracted successfully',
message: 'oembed data has been extracted successfully',
data,
meta
})
Expand Down
2 changes: 1 addition & 1 deletion examples/tsnode-oembed-parser/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app.get('/', async (req, res) => {
const data = await extract(url)
return res.json({
error: 0,
message: 'article has been extracted successfully',
message: 'oembed data has been extracted successfully',
data,
meta
})
Expand Down

0 comments on commit 1bcba39

Please sign in to comment.