Skip to content

Commit afa62cc

Browse files
chore(deps): bump crate-ci/typos from 1.36.3 to 1.37.2 (#2055)
1 parent d4883fc commit afa62cc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
runs-on: ubuntu-latest
5555
steps:
5656
- uses: actions/checkout@v5
57-
- uses: crate-ci/typos@v1.36.3
57+
- uses: crate-ci/typos@v1.37.2

const-oid/oiddbgen/src/ldap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ impl<'a> LdapParser<'a> {
1212
let (.., next) = next[1..].split_at(next[1..].find(',').unwrap());
1313
let (obid, next) = next[1..].split_at(next[1..].find(',').unwrap());
1414

15-
let indx = obid.find('.')?;
16-
obid.split_at(indx).0.parse::<usize>().ok()?;
15+
let index = obid.find('.')?;
16+
obid.split_at(index).0.parse::<usize>().ok()?;
1717

1818
let spec = if let Some(boundary) = next[1..].find(',') {
1919
let (spec, _comment) = next[..].split_at(boundary + 1);

0 commit comments

Comments
 (0)