Skip to content

Commit f8e344e

Browse files
authored
Merge pull request sysprog21#496 from howjmay/typo
Add missing bar to separate filename
2 parents df48709 + 5b8a738 commit f8e344e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ However, participation requires adherence to fundamental ground rules:
4747
Software requirement: [clang-format](https://clang.llvm.org/docs/ClangFormat.html) version 12 or later.
4848

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

5252
## Coding Style for Modern C
5353

src/jit.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*/
55

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

0 commit comments

Comments
 (0)