diff options
author | Alexander Andreev <[email protected]> | 2019-07-06 12:04:56 +0100 |
---|---|---|
committer | Alexander Andreev <[email protected]> | 2019-07-06 12:04:56 +0100 |
commit | 35a0f04128b1ba84da8f3a107e7eed0b164733ed (patch) | |
tree | 78f7b70553476cc68f7aa0a15fda1dce4c2c8f38 /crates/ra_prof/src | |
parent | 219e0e8c8d6672feaab2f19b7c3280d5967360e4 (diff) |
Added extract path attribute for current module
#1211
Diffstat (limited to 'crates/ra_prof/src')
-rw-r--r-- | crates/ra_prof/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_prof/src/lib.rs b/crates/ra_prof/src/lib.rs index 919cc1b3c..6d44fef33 100644 --- a/crates/ra_prof/src/lib.rs +++ b/crates/ra_prof/src/lib.rs | |||
@@ -52,7 +52,7 @@ pub fn set_filter(f: Filter) { | |||
52 | /// It supports nested profiling scopes in case when this function invoked multiple times at the execution stack. In this case the profiling information will be nested at the output. | 52 | /// It supports nested profiling scopes in case when this function invoked multiple times at the execution stack. In this case the profiling information will be nested at the output. |
53 | /// Profiling information is being printed in the stderr. | 53 | /// Profiling information is being printed in the stderr. |
54 | /// | 54 | /// |
55 | /// #Example | 55 | /// # Example |
56 | /// ``` | 56 | /// ``` |
57 | /// use ra_prof::{profile, set_filter, Filter}; | 57 | /// use ra_prof::{profile, set_filter, Filter}; |
58 | /// | 58 | /// |