diff options
| -rw-r--r-- | xmake/core/base/profiler.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/base/profiler.lua b/xmake/core/base/profiler.lua index 09b4c45f5..331f02c5e 100644 --- a/xmake/core/base/profiler.lua +++ b/xmake/core/base/profiler.lua @@ -214,7 +214,7 @@ function profiler:stop() end end --- enter the given tag for perl:tag +-- enter the given tag for perf:tag function profiler:enter(name, ...) local is_perf_tag = self._IS_PERF_TAG if is_perf_tag == nil then @@ -229,7 +229,7 @@ function profiler:enter(name, ...) end end --- leave the given tag for perl:tag +-- leave the given tag for perf:tag function profiler:leave(name, ...) local is_perf_tag = self._IS_PERF_TAG if is_perf_tag == nil then |
