We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4883fc commit afa62ccCopy full SHA for afa62cc
.github/workflows/workspace.yml
@@ -54,4 +54,4 @@ jobs:
54
runs-on: ubuntu-latest
55
steps:
56
- uses: actions/checkout@v5
57
- - uses: crate-ci/typos@v1.36.3
+ - uses: crate-ci/typos@v1.37.2
const-oid/oiddbgen/src/ldap.rs
@@ -12,8 +12,8 @@ impl<'a> LdapParser<'a> {
12
let (.., next) = next[1..].split_at(next[1..].find(',').unwrap());
13
let (obid, next) = next[1..].split_at(next[1..].find(',').unwrap());
14
15
- let indx = obid.find('.')?;
16
- obid.split_at(indx).0.parse::<usize>().ok()?;
+ let index = obid.find('.')?;
+ obid.split_at(index).0.parse::<usize>().ok()?;
17
18
let spec = if let Some(boundary) = next[1..].find(',') {
19
let (spec, _comment) = next[..].split_at(boundary + 1);
0 commit comments