Skip to content

Commit d23b714

Browse files
d-e-s-odanielocfb
authored andcommitted
Fix wording: "C Header" -> "Rust bindings"
The crate does not generate a C header but Rust bindings, but wording and error messages talk about the former, which can cause confusion. Fix the wording. Signed-off-by: Daniel Müller <[email protected]>
1 parent 15687c9 commit d23b714

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ jobs:
169169
cargo update
170170
cargo build
171171
172-
c-header:
173-
name: Check generated C header
172+
rust-bindings:
173+
name: Check generated Rust bindings
174174
runs-on: ubuntu-latest
175175
steps:
176176
- uses: actions/checkout@v4
@@ -180,9 +180,9 @@ jobs:
180180
run: sudo apt-get install libelf-dev
181181
- uses: dtolnay/rust-toolchain@stable
182182
- run: cargo check --features bindgen-source
183-
- name: Check that C header is up-to-date
183+
- name: Check that generated Rust bindings are up-to-date
184184
run: git diff --exit-code ||
185-
(echo "!!!! CHECKED IN C HEADER IS OUTDATED !!!!" && false)
185+
(echo "!!!! CHECKED IN BINDINGS ARE OUTDATED !!!!" && false)
186186

187187
clippy:
188188
name: Lint with clippy

0 commit comments

Comments
 (0)