Skip to content

Add missing bar to separate filename #496

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

Merged
merged 1 commit into from
Sep 28, 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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ However, participation requires adherence to fundamental ground rules:
Software requirement: [clang-format](https://clang.llvm.org/docs/ClangFormat.html) version 12 or later.

This repository consistently contains an up-to-date `.clang-format` file with rules that match the explained ones.
For maintaining a uniform coding style, execute the command `clang-format -i *.[ch]`.
For maintaining a uniform coding style, execute the command `clang-format -i *.{c,h}`.

## Coding Style for Modern C

Expand Down
4 changes: 2 additions & 2 deletions src/jit.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*/

/* This JIT implementation has undergone extensive modifications, heavily
* relying on the ubpf_jit_[x86_64|arm64].[ch] from ubpf. The original
* ubpf_jit_[x86_64|arm64].[ch] file served as the foundation and source of
* relying on the ubpf_jit_[x86_64|arm64].[c|h] from ubpf. The original
* ubpf_jit_[x86_64|arm64].[c|h] file served as the foundation and source of
* inspiration for adapting and tailoring it specifically for this JIT
* implementation. Therefore, credit and sincere thanks are extended to ubpf for
* their invaluable work.
Expand Down