microsoft / aici

AICI: Prompts as (Wasm) Programs
MIT License
1.87k stars 76 forks source link

Remove unused parameter of function `controllers/uppercase/src/main.rs - append(&self, state: usize, _byte: u8)` #69

Closed Raboro closed 4 months ago

Raboro commented 4 months ago

In controllers/uppercase/src/main.rs the function append takes &self, state: usize and _byte: u8 but only uses state. Remove unused _byte:

image

mmoskal commented 4 months ago

it's needed to conform to a trait