mirror of https://github.com/waku-org/js-waku.git
Fix spelling
This commit is contained in:
parent
b8434dcaa1
commit
928ae5128e
|
@ -57,6 +57,7 @@
|
|||
"upgrader",
|
||||
"waku",
|
||||
"wakunode",
|
||||
"webfonts",
|
||||
"websockets"
|
||||
],
|
||||
"flagWords": [],
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
"test": "run-s build test:*",
|
||||
"test:lint": "eslint src --ext .ts --ext .tsx",
|
||||
"test:prettier": "prettier \"src/**/*.{ts,tsx}\" --list-different",
|
||||
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
|
||||
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.{ts,tsx},public/**/*.html}\"",
|
||||
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
|
||||
"fix:lint": "eslint src --ext .ts --ext .tsx --fix",
|
||||
"js-waku:install": "cd ../; npm install",
|
||||
|
|
|
@ -123,7 +123,7 @@ export default function App() {
|
|||
);
|
||||
}
|
||||
} catch (e) {
|
||||
commandResponses.push('Invalid multaddr: ' + e);
|
||||
commandResponses.push('Invalid multiaddr: ' + e);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@ -137,10 +137,10 @@ export default function App() {
|
|||
addresses = addresses.replace(/,$/, '');
|
||||
addresses += ']';
|
||||
commandResponses.push(addresses);
|
||||
let protos = ' protos: [';
|
||||
protos += peer.protocols;
|
||||
protos += ']';
|
||||
commandResponses.push(protos);
|
||||
let protocols = ' protocols: [';
|
||||
protocols += peer.protocols;
|
||||
protocols += ']';
|
||||
commandResponses.push(protocols);
|
||||
});
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue