Skip to content

Commit

Permalink
Fix dart:developer API docs
Browse files Browse the repository at this point in the history
Fixes a formatting issue with a code block not being terminated
correctly.

https://api.dart.dev/be/3da16e93a94fe30337049bda853d3f8690adf32d/dart-developer/dart-developer-library.html

CoreLibraryReviewExempt: Documentation only.
Change-Id: I5213015a0b7687f82e003bae6bc3378eaa90c4a2
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/305660
Reviewed-by: Erik Ernst <[email protected]>
Commit-Queue: Erik Ernst <[email protected]>
Auto-Submit: Michael Thomsen <[email protected]>
Reviewed-by: Lasse Nielsen <[email protected]>
  • Loading branch information
mit-mit authored and Commit Queue committed May 25, 2023
1 parent fa20ed6 commit 192d601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/lib/developer/developer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
/// }
///
/// int fibonacci(int n) => (n < 2) ? n : fibonacci(n - 2) + fibonacci(n - 1);
////// ```
/// ```
///
/// When executed with `dart run --observe`, and opened in DevTools,
/// the Performance tab will display a timeline containing the annotations
Expand Down

0 comments on commit 192d601

Please sign in to comment.