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 38c3fd8 commit bee2d57Copy full SHA for bee2d57
ci/lint/04_install.sh
@@ -35,7 +35,7 @@ python3 --version
35
36
${CI_RETRY_EXE} pip3 install \
37
codespell==2.2.5 \
38
- flake8==6.0.0 \
+ flake8==6.1.0 \
39
lief==0.13.2 \
40
mypy==1.4.1 \
41
pyzmq==25.1.0 \
src/test/fuzz/descriptor_parse.cpp
@@ -85,7 +85,7 @@ class MockedDescriptorConverter {
85
std::string desc;
86
desc.reserve(mocked_desc.size());
87
88
- // Replace all occurences of '%' followed by two hex characters with the corresponding key.
+ // Replace all occurrences of '%' followed by two hex characters with the corresponding key.
89
for (size_t i = 0; i < mocked_desc.size();) {
90
if (mocked_desc[i] == '%') {
91
if (i + 3 >= mocked_desc.size()) return {};
0 commit comments