Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Update 👷 GitHub Action crate-ci/typos to v1.28.0 #393

Merged
merged 2 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Checking Spelling
uses: crate-ci/typos@b74202f74b4346efdbce7801d187ec57b266bac8 # v1.27.3
uses: crate-ci/typos@78d6d2274460eb93ea511a10ce9f67d72f014f35 # v1.28.0
with:
config: ${{github.workspace}}/.github/settings/typos.yml
2 changes: 1 addition & 1 deletion src/outcome.rs
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ impl<S: DerefMut, M, F> Outcome<S, M, F> {
impl<S, M: Debug, F: Debug> Outcome<S, M, F> {
/// Returns the contained [`Success`] value, consuming the `self` value.
///
/// Because this function may panic, its use is generally discourged.
/// Because this function may panic, its use is generally discouraged.
/// Instead, prefer to use pattern matching and handle the [`Mistake`] or
/// [`Failure`] case explicitly, or call [`unwrap_or`], [`unwrap_or_else`],
/// or [`unwrap_or_default`].
Expand Down