diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2024-10-29 09:07:38 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2024-10-29 09:07:38 +1300 |
commit | cbb20c667c8c13fe1d14d1ef146ea0f815e619cc (patch) | |
tree | dcb753230aabfc1beaec032c4e92096080ba1428 /src/devices/local_device.rs | |
parent | 1a830a3d1b9d99653322d5ae49ea8165de7ed9d0 (diff) | |
download | bedrock-pc-cbb20c667c8c13fe1d14d1ef146ea0f815e619cc.zip |
Rename --encode-stdin option to --decode-stdin
This more accurately reflects its function.
Diffstat (limited to 'src/devices/local_device.rs')
-rw-r--r-- | src/devices/local_device.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/local_device.rs b/src/devices/local_device.rs index 14a8f71..94b798d 100644 --- a/src/devices/local_device.rs +++ b/src/devices/local_device.rs @@ -57,7 +57,7 @@ impl LocalDevice { stdout_connected: true, - decode_stdin: config.encode_stdin, + decode_stdin: config.decode_stdin, encode_stdout: config.encode_stdout, decode_buffer: None, } |