Add missing documentation for Session::time

This commit is contained in:
Guillaume Gomez 2023-07-24 16:50:25 +02:00
parent 155a5c2862
commit 8cab95ef9b

View file

@ -7,6 +7,7 @@ impl Session {
pub fn timer(&self, what: &'static str) -> VerboseTimingGuard<'_> {
self.prof.verbose_generic_activity(what)
}
/// Used by `-Z self-profile`.
pub fn time<R>(&self, what: &'static str, f: impl FnOnce() -> R) -> R {
self.prof.verbose_generic_activity(what).run(f)
}