Skip to content

Commit 22f0b90

Browse files
committed
Minor edited description of function decorator.
1 parent ca58f87 commit 22f0b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/user-guide/function-decorator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def function():
2222

2323
## Examples
2424
### Basic Usage
25-
Use the `@function_timer()` as decorator to measure performance time of a function:
25+
Use the `@function_timer()` as decorator to measure the performance of a function. Then the Timer will be triggered each time the function is called, and the clock will stop automatically when the function is finished:
2626

2727
```python linenums="1" hl_lines="3"
2828
from timer import function_timer

0 commit comments

Comments
 (0)