diff --git a/CHANGELOG.md b/CHANGELOG.md index cc1428d97..d9e4bfac5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Optional types for `self` argument in `extends mutates` functions are now allowed: PR [#854](https://github.com/tact-lang/tact/pull/854) - Docs: complete overhaul of the exit codes page: PR [#978](https://github.com/tact-lang/tact/pull/978) - Docs: enhanced Jettons Cookbook page: PR [#944](https://github.com/tact-lang/tact/pull/944) +- Error codes in the report are now formatted as a list: PR [#1051](https://github.com/tact-lang/tact/pull/1051) ### Fixed diff --git a/src/generator/writeReport.ts b/src/generator/writeReport.ts index b6f580a85..62250f53d 100644 --- a/src/generator/writeReport.ts +++ b/src/generator/writeReport.ts @@ -45,7 +45,7 @@ export function writeReport(ctx: CompilerContext, pkg: PackageFileFormat) { // Error Codes w.write(`# Error Codes`); Object.entries(abi.errors!).forEach(([t, abiError]) => { - w.write(`${t}: ${abiError.message}`); + w.write(`* ${t}: ${abiError.message}`); }); w.append();