We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e5276 commit f80d61eCopy full SHA for f80d61e
platform-includes/performance/add-spans-example/rust.mdx
@@ -16,17 +16,17 @@ fn perform_checkout() {
16
"validating shopping cart",
17
);
18
19
- validate_shopping_cart() //Some long process, maybe a sync http request.
+ validate_shopping_cart(); //Some long process, maybe a sync http request.
20
21
validation_span.finish();
22
23
// Process the order
24
let process_span = transaction.start_child(
25
"process",
26
"processing shopping cart",
27
- )
+ );
28
29
- process_shopping_cart() //Another time consuming process.
+ process_shopping_cart(); //Another time consuming process.
30
31
process_span.finish();
32
0 commit comments