diff --git a/README.md b/README.md index 7532b38..d70be94 100644 --- a/README.md +++ b/README.md @@ -1397,7 +1397,7 @@ def profiler(func): #### Decorator for function tracing: ```python def tracer(func): - """Prints input and output of a decorated function.""" + """Prints arguments and output of a decorated function.""" def out(*args, **kwargs): result = func(*args, **kwargs) arg_list = [str(x) for x in args]