We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28fa65d commit dce0a40Copy full SHA for dce0a40
docs/rules/valid-types.md
@@ -846,5 +846,9 @@ function quux() {
846
847
}
848
// Settings: {"jsdoc":{"mode":"typescript"}}
849
+
850
+/**
851
+ * @returns {Promise<{publicKey, privateKey}>} - The public and private key
852
+ */
853
````
854
src/bin/generateDocs.js
@@ -258,7 +258,7 @@ const assertDocsAreUpToDate = async () => {
258
const isUpToDate = fs.readFileSync(docPath, 'utf8') === docContent;
259
260
if (!isUpToDate) {
261
- throw new Error('Readme is not up to date, please run `npm run create-docs` to update it.');
+ throw new Error('Docs are not up to date, please run `npm run create-docs` to update it.');
262
263
264
};
0 commit comments