From ffc4b57e70ee2e758f469a033f3aa98f50db61d9 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Tue, 11 Feb 2025 20:25:38 +0200 Subject: [PATCH] docs(core): fix micropython GC arena analysis tool name [no changelog] --- core/embed/upymod/modtrezorutils/modtrezorutils-meminfo.h | 2 +- core/mocks/generated/trezorutils.pyi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/upymod/modtrezorutils/modtrezorutils-meminfo.h b/core/embed/upymod/modtrezorutils/modtrezorutils-meminfo.h index da2b543bf2..79b940a2ad 100644 --- a/core/embed/upymod/modtrezorutils/modtrezorutils-meminfo.h +++ b/core/embed/upymod/modtrezorutils/modtrezorutils-meminfo.h @@ -711,7 +711,7 @@ void dump_qstrdata(FILE *out) { /// def meminfo(filename: str) -> None: /// """Dumps map of micropython GC arena to a file. -/// The JSON file can be decoded by analyze.py +/// The JSON file can be decoded by analyze-memory-dump.py /// Only available in the emulator. /// """ STATIC mp_obj_t mod_trezorutils_meminfo(mp_obj_t filename) { diff --git a/core/mocks/generated/trezorutils.pyi b/core/mocks/generated/trezorutils.pyi index 300c25eecf..8cf7cc44ec 100644 --- a/core/mocks/generated/trezorutils.pyi +++ b/core/mocks/generated/trezorutils.pyi @@ -4,7 +4,7 @@ from typing import * # upymod/modtrezorutils/modtrezorutils-meminfo.h def meminfo(filename: str) -> None: """Dumps map of micropython GC arena to a file. - The JSON file can be decoded by analyze.py + The JSON file can be decoded by analyze-memory-dump.py Only available in the emulator. """