Skip to content

Commit 8c83ec3

Browse files
committed
export: fix typo in gpio_exportall
Signed-off-by: Paul Osborne <[email protected]>
1 parent 5d03273 commit 8c83ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/gpio_exportall.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub fn main(config: &GpioConfig, opts: &GpioExportAllOptions) {
1111
None => config.get_symlink_root(),
1212
};
1313

14-
// export all pins except those fork which export is set to false
14+
// export all pins except those for which export is set to false
1515
for pin in config.get_pins().iter().filter(|p| p.export) {
1616
if let Err(e) = export::export(pin, Some(symlink_root)) {
1717
println!("Error occurred while exporting pin: {:?}", pin);

0 commit comments

Comments
 (0)