Skip to content

Commit 26d278a

Browse files
Fix booleans where lowercase. (#50)
1 parent 360a5b6 commit 26d278a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lang/en/typeshed/stdlib/log.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def delete(full=False):
9292
def set_mirroring(serial: bool):
9393
"""Mirrors the data logging activity to the serial output.
9494
95-
Example: ``log.set_mirroring(true)``
95+
Example: ``log.set_mirroring(True)``
9696
9797
Mirroring is disabled by default.
9898

lang/en/typeshed/stdlib/time.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,6 @@ def ticks_diff(ticks1: int, ticks2: int) -> int:
127127
task.run()
128128
elif ticks_diff(scheduled_time, now) < 0:
129129
print("Oops, running late, tell task to run faster!")
130-
task.run(run_faster=true)
130+
task.run(run_faster=True)
131131
"""
132132
...

0 commit comments

Comments
 (0)