Skip to content

Commit

Permalink
Missed some
Browse files Browse the repository at this point in the history
  • Loading branch information
loewenheim committed Nov 28, 2024
1 parent 297750b commit 121b4ca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions crates/symbolicator-js/src/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,9 @@ pub struct JsFrame {
/// The frame's platform.
///
/// `Platform` is actually too lenient of a type here—a legitimate
/// JS frame should only have [`JavaScript`](JsPlatform::JavaScript)
/// or [`Node`](JsPlatform::Node). However,
/// JS frame should only have
/// [`JavaScript`](symbolicator_service::types::JsPlatform::JavaScript)
/// or [`Node`](symbolicator_service::types::JsPlatform::Node). However,
/// we use the general `Platform` type for now to be resilient against
/// wrong values making it through.
#[serde(skip_serializing_if = "Option::is_none")]
Expand Down
4 changes: 2 additions & 2 deletions crates/symbolicator-native/src/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ pub struct RawFrame {
/// The frame's platform.
///
/// `Platform` is actually too lenient of a type here—a legitimate
/// native frame should have a [`NativePlatform`]. However,
/// we use the general `Platform` type for now to be resilient against
/// native frame should have a [`symbolicator_service::types::NativePlatform`].
/// However, we use the general `Platform` type for now to be resilient against
/// wrong values making it through.
#[serde(skip_serializing_if = "Option::is_none")]
pub platform: Option<Platform>,
Expand Down
3 changes: 2 additions & 1 deletion crates/symbolicator-proguard/src/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ pub struct JvmFrame {
/// The frame's platform.
///
/// `Platform` is actually too lenient of a type here—a legitimate
/// JVM frame should only have [`Java`](JvmPlatform::Java). However,
/// JVM frame should only have
/// [`Java`](symbolicator_service::types::JvmPlatform::Java). However,
/// we use the general `Platform` type for now to be resilient against
/// wrong values making it through.
#[serde(skip_serializing_if = "Option::is_none")]
Expand Down

0 comments on commit 121b4ca

Please sign in to comment.