Skip to content

Commit

Permalink
docs: fix missing closing parenthesis (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriciodemuner authored Dec 27, 2023
1 parent 5afa83b commit dbfac97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/docs/introduction/example.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ fs.createReadStream(path.resolve(__dirname, 'assets', 'snake_case_users.csv'))
return next(err);
}
if (!user) {
return next(new Error(`Unable to find user for ${row.id}`);
return next(new Error(`Unable to find user for ${row.id}`));
}
return next(null, {
id: user.id,
Expand Down

0 comments on commit dbfac97

Please sign in to comment.