diff options
| author | ruki <[email protected]> | 2024-06-04 22:53:18 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-06-04 22:53:18 +0800 |
| commit | 13a5f11a85eff431f0254247da36ffeb3f6e6a17 (patch) | |
| tree | 65acb2fa124bd555f38abd79823e0a9db5b13778 | |
| parent | 1883b6b9f69dddac3c19806014d135ebd9d18e67 (diff) | |
fix typo
| -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 |
