Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sigoden committed Jun 6, 2024
1 parent ea0c2be commit ac37b0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The project supports write functions in bash/js/python.

### Bash

Create a new bashscript in the [./tools/sh](./tools/sh/) directory (.e.g. `may_execute_command.sh`).
Create a new bashscript in the [./tools/](./tools/) directory (.e.g. `may_execute_command.sh`).

```sh
#!/usr/bin/env bash
Expand Down Expand Up @@ -109,7 +109,7 @@ The relationship between comment tags and parameters in function declarations is

### Javascript

Create a new javascript in the [./tools/js](./tools/js/) directory (.e.g. `may_execute_command.js`).
Create a new javascript in the [./tools/](./tools/) directory (.e.g. `may_execute_command.js`).

```js
exports.declarate = function declarate() {
Expand Down Expand Up @@ -139,7 +139,7 @@ exports.execute = function execute(data) {

### Python

Create a new python script in the [./tools/py](./tools/py/) directory (e.g., `may_execute_py_code.py`).
Create a new python script in the [./tools/](./tools/) directory (e.g., `may_execute_py_code.py`).

```py
def declarate():
Expand Down Expand Up @@ -167,7 +167,7 @@ def execute(data):

### Ruby

Create a new ruby script in the [./tools/rb](./tools/rb/) directory (e.g., `may_execute_rb_code.rb`).
Create a new ruby script in the [./tools/](./tools/) directory (e.g., `may_execute_rb_code.rb`).

```rb
def declarate
Expand Down

0 comments on commit ac37b0a

Please sign in to comment.