From c3f2397010d7ee0c217b557f058e78fde691fbd4 Mon Sep 17 00:00:00 2001 From: cds-amal Date: Tue, 14 Feb 2023 08:54:41 -0500 Subject: [PATCH] debug: add website link to debug help --- packages/debug-utils/index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/debug-utils/index.js b/packages/debug-utils/index.js index 545df198564..8a0f23d7ddb 100644 --- a/packages/debug-utils/index.js +++ b/packages/debug-utils/index.js @@ -369,7 +369,11 @@ var DebugUtils = { return shortcuts.map(DebugUtils.formatCommandDescription).join(", "); }); - var suffix = [""]; + var suffix = [ + "", + "Docs: https://trufflesuite.com/docs/truffle/how-to/debug-test/use-the-truffle-debugger/", + "" + ]; var lines = prefix.concat(commandSections).concat(suffix);