Skip to content

Commit 0026e5d

Browse files
committed
fmt: fix formatting of lib/std/x/net/bpf.zig
1 parent 95dbbc4 commit 0026e5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/std/x/net/bpf.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
//! (010) ret #262144 ; copy 0x40000
106106
//! (011) ret #0 ; skip packet
107107
//! ```
108-
//!
108+
//!
109109
//! Here we can make a few observations:
110110
//!
111111
//! - The problem "filter only tcp packets" has essentially been transformed
@@ -248,7 +248,7 @@ pub const JGT = 0x20;
248248
/// jge x, Lt, Lf: pc += (a >= x) ? jt : jf.
249249
pub const JGE = 0x30;
250250
/// jset #k, Lt, Lf: pc += (a & k > 0) ? jt : jf.
251-
/// jset x, Lt, Lf: pc += (a & x > 0) ? jt : jf.
251+
/// jset x, Lt, Lf: pc += (a & x > 0) ? jt : jf.
252252
pub const JSET = 0x40;
253253

254254
// Miscellaneous operations/register copy.

0 commit comments

Comments
 (0)