Skip to content

Commit

Permalink
fix(app-start): Cold start should be Cold Start (#2076)
Browse files Browse the repository at this point in the history
* fix description

* update
  • Loading branch information
buenaflor authored May 28, 2024
1 parent 31e875c commit 5baa201
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Fixes

- Change app start span description from `Cold start` to `Cold Start` and `Warm start` to `Warm Start` ([#2076](https://github.com/getsentry/sentry-dart/pull/2076))

### Dependencies

- Bump Cocoa SDK from v8.25.2 to v8.26.0 ([#2060](https://github.com/getsentry/sentry-dart/pull/2060))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class AppStartInfo {
String get appStartTypeOperation => 'app.start.${type.name}';

String get appStartTypeDescription =>
type == AppStartType.cold ? 'Cold start' : 'Warm start';
type == AppStartType.cold ? 'Cold Start' : 'Warm Start';
final pluginRegistrationDescription = 'App start to plugin registration';
final sentrySetupDescription = 'Before Sentry Init Setup';
final firstFrameRenderDescription = 'First frame render';
Expand Down

0 comments on commit 5baa201

Please sign in to comment.