閉じかっこの位置がおかしかったのを修正

This commit is contained in:
na2na 2022-02-19 15:34:53 +09:00
parent d4c9a11472
commit 359c227269

View file

@ -22,7 +22,7 @@ export default class extends Module {
const b = Math.floor(Math.random() * 256);
// rgbをhexに変換する
const hex = `${r.toString(16)}${g.toString(16)}${b.toString(16)}`;
const message = `RGB: ${r}, ${g}, ${b} (\`#${hex})\`とかどう?`
const message = `RGB: ${r}, ${g}, ${b} \`(#${hex})\`とかどう?`
setTimeout(async () => {
const file = await this.getColorSampleFile(r,g,b);