Skip to content

Commit cc8193a

Browse files
committed
fix docstring
1 parent 0be8293 commit cc8193a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/wasm/src/sentry_gauge.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ const MANIFEST_FILE_PATH: &str = ".\\manifest.json";
2121
/// The path to the sentry persistent state file
2222
const SENTRY_FILE: &str = "\\work/ng_sentry.json";
2323

24-
// The amount of seconds between forced Sentry flushes
24+
/// The amount of seconds between forced Sentry flushes
2525
const SENTRY_FLUSH_INTERVAL_SECONDS: u64 = 60;
2626

27-
// The global Sentry state instance
27+
/// The global Sentry state instance
2828
static SENTRY_STATE: Lazy<Mutex<SentryPersistentState>> =
2929
Lazy::new(|| Mutex::new(SentryPersistentState::load()));
3030

31-
// A pending sentry report
31+
/// A pending sentry report
3232
#[derive(Deserialize, Serialize)]
3333
struct PendingSentryReport {
3434
url: String,

0 commit comments

Comments
 (0)