Merge pull request #289 from astraw/fix-typo

fix typo
This commit is contained in:
9names 2022-02-13 13:37:12 +11:00 committed by GitHub
commit fff980611a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,7 +67,7 @@
//! pwm.set_div_int(1u8); // To set integer part of clock divider //! pwm.set_div_int(1u8); // To set integer part of clock divider
//! pwm.set_div_frac(0u8); // To set fractional part of clock divider //! pwm.set_div_frac(0u8); // To set fractional part of clock divider
//! //!
//! pwm.get_top(); // To set the TOP register //! pwm.get_top(); // To get the TOP register
//! pwm.set_top(u16::MAX); // To set the TOP register //! pwm.set_top(u16::MAX); // To set the TOP register
//! //!
//! ``` //! ```