summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2026-03-05 22:00:15 +0100
committerThomas Voss <mail@thomasvoss.com> 2026-03-05 22:00:15 +0100
commitd6a9dc8331d4633f4abf1d569fc5967aa07f0f32 (patch)
tree4e992b421917da990d49d4847eadf24797215721
parent3840127a3de315fa2a2471ddf1e23575f2608373 (diff)
Cargo fmt
-rw-r--r--oryxc/src/prelude.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/oryxc/src/prelude.rs b/oryxc/src/prelude.rs
index 4fe1413..32a123f 100644
--- a/oryxc/src/prelude.rs
+++ b/oryxc/src/prelude.rs
@@ -36,7 +36,7 @@ pub struct Symbol {
pub enum OryxType {
Integer { bits: usize, signed: bool },
Pointer { base: u32 },
- Function { args: Vec<u32>, rets: Vec<u32> },
+ Function { args: Vec<u32>, rets: Vec<u32> },
}
#[derive(Clone, Copy)]