Skip to content

Commit

Permalink
Fix leftover mentions of State in QRCode docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Feb 9, 2024
1 parent 8b14f88 commit 564ad95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions widget/src/qr_code.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ pub struct Data {
}

impl Data {
/// Creates a new [`State`] with the provided data.
/// Creates a new [`Data`] with the provided data.
///
/// This method uses an [`ErrorCorrection::Medium`] and chooses the smallest
/// size to display the data.
Expand All @@ -184,7 +184,7 @@ impl Data {
Ok(Self::build(encoded))
}

/// Creates a new [`State`] with the provided [`ErrorCorrection`].
/// Creates a new [`Data`] with the provided [`ErrorCorrection`].
pub fn with_error_correction(
data: impl AsRef<[u8]>,
error_correction: ErrorCorrection,
Expand All @@ -197,7 +197,7 @@ impl Data {
Ok(Self::build(encoded))
}

/// Creates a new [`State`] with the provided [`Version`] and
/// Creates a new [`Data`] with the provided [`Version`] and
/// [`ErrorCorrection`].
pub fn with_version(
data: impl AsRef<[u8]>,
Expand Down Expand Up @@ -276,7 +276,7 @@ impl From<ErrorCorrection> for qrcode::EcLevel {
}
}

/// An error that occurred when building a [`State`] for a [`QRCode`].
/// An error that occurred when building a [`Data`] for a [`QRCode`].
#[derive(Debug, Clone, Copy, PartialEq, Eq, Error)]
pub enum Error {
/// The data is too long to encode in a QR code for the chosen [`Version`].
Expand Down

0 comments on commit 564ad95

Please sign in to comment.