From 6a37fe713eba517ac69494d6444841d2b70ba322 Mon Sep 17 00:00:00 2001 From: Nathan <2266858+njmartin10@users.noreply.github.com> Date: Tue, 6 Nov 2018 20:20:51 -0800 Subject: [PATCH] Fix set_output_status -> set_output_mode --- src/static-guarantees/state-machines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static-guarantees/state-machines.md b/src/static-guarantees/state-machines.md index c890b35..d86f4f7 100644 --- a/src/static-guarantees/state-machines.md +++ b/src/static-guarantees/state-machines.md @@ -79,7 +79,7 @@ impl Gpio { }); } - pub fn set_output_status(&mut self, is_high: bool) { + pub fn set_output_mode(&mut self, is_high: bool) { self.periph.modify(|_r, w| { w.output_mode.set_bit(is_high) });