Skip to content

Commit bcff770

Browse files
1 parent f31a417 commit bcff770

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lang/en/typeshed/stdlib/math.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def isinf(x: float) -> bool:
159159
...
160160

161161
def isnan(x: float) -> bool:
162-
"""Check is a value is not-a-number (NaN).
162+
"""Check if a value is not-a-number (NaN).
163163
164164
Example: ``math.isnan(float('nan'))``
165165

lang/en/typeshed/stdlib/microbit/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def running_time() -> int:
132132
"""
133133

134134
def temperature() -> int:
135-
"""Get the temperature of the micro:bit in degrees Celcius."""
135+
"""Get the temperature of the micro:bit in degrees Celsius."""
136136

137137
def set_volume(v: int) -> None:
138138
"""Sets the volume.

lang/en/typeshed/stdlib/microbit/audio.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class SoundEffect:
6666
"""No effect option used for the ``fx`` parameter."""
6767

6868
FX_TREMOLO: ClassVar[int]
69-
"""Tremelo effect option used for the ``fx`` parameter."""
69+
"""Tremolo effect option used for the ``fx`` parameter."""
7070

7171
FX_VIBRATO: ClassVar[int]
7272
"""Vibrato effect option used for the ``fx`` parameter."""

lang/en/typeshed/stdlib/microbit/i2c.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def scan() -> List[int]:
3434
...
3535

3636
def read(addr: int, n: int, repeat: bool = False) -> bytes:
37-
"""Read bytes from a device..
37+
"""Read bytes from a device.
3838
3939
Example: ``i2c.read(0x50, 64)``
4040

0 commit comments

Comments
 (0)