From 766ec231f598276b1c792c759986f431ed2b43a9 Mon Sep 17 00:00:00 2001 From: sigoden Date: Sat, 3 Aug 2024 03:14:29 +0000 Subject: chore: update description of some tools --- tools/execute_command.sh | 2 +- tools/execute_js_code.js | 2 +- tools/execute_py_code.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/execute_command.sh b/tools/execute_command.sh index 0e04b85..c9f4a7d 100755 --- a/tools/execute_command.sh +++ b/tools/execute_command.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -# @describe Runs the shell command. +# @describe Execute the shell command. # @option --command! The command to execute. main() { diff --git a/tools/execute_js_code.js b/tools/execute_js_code.js index bef6454..853ccab 100644 --- a/tools/execute_js_code.js +++ b/tools/execute_js_code.js @@ -1,5 +1,5 @@ /** - * Runs the javascript code in node.js. + * Execute the javascript code in node.js. * @typedef {Object} Args * @property {string} code - Javascript code to execute, such as `console.log("hello world")` * @param {Args} args diff --git a/tools/execute_py_code.py b/tools/execute_py_code.py index b4bf7b1..a774e82 100644 --- a/tools/execute_py_code.py +++ b/tools/execute_py_code.py @@ -1,5 +1,5 @@ def run(code: str): - """Runs the python code. + """Execute the python code. Args: code: Python code to execute, such as `print("hello world")` """ -- cgit v1.2.3