From 267495d95ae4904af86ee6f1c36252caa82eef58 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Tue, 29 Aug 2023 22:56:08 -0400 Subject: [PATCH] whitespace --- src/core/collector.ml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/collector.ml b/src/core/collector.ml index 06c747c..5fd8e1b 100644 --- a/src/core/collector.ml +++ b/src/core/collector.ml @@ -29,7 +29,7 @@ module type S = sig This replaces the previous [enter_span] and [exit_span] which were too flexible to be efficient to implement in async contexts. - @since 0.3 *) + @since 0.3 *) val enter_manual_span : parent:explicit_span option -> @@ -96,7 +96,8 @@ module Default : S = struct _fail "enter_manual_span" let exit_manual_span _ = _fail "exit_manual_span" - let add_data_to_span _ _ = _fail "add_data_to_span" + let add_data _ = _fail "add_data" + let add_data_to_manual_span _ = _fail "add_data_to_manual_span" let message ?span:_ ~data:_ = _fail "message" let name_thread _ = _fail "name_thread" let name_process _ = _fail "name_process"