Files
trezor-suite/docs/code-style-guide/comments.md
2026-01-27 18:26:17 +01:00

201 B

Comments

Start with uppercase letter and end with a period

// This is a comment that will help you understand what is happening in the
// code below.
const someFunction = () => null;