Merge pull request #4948 from dmcomm/pulsein-len-docs

Fix pulseio.PulseIn __len__() documentation
This commit is contained in:
Scott Shawcroft 2021-06-30 10:17:12 -07:00 committed by GitHub
commit aca1314a3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ const mp_obj_property_t pulseio_pulsein_paused_obj = {
//| def __bool__(self) -> bool: ... //| def __bool__(self) -> bool: ...
//| //|
//| def __len__(self) -> int: //| def __len__(self) -> int:
//| """Returns the current pulse length //| """Returns the number of pulse durations currently stored.
//| //|
//| This allows you to:: //| This allows you to::
//| //|