diff --git a/docs/library/machine.UART.rst b/docs/library/machine.UART.rst
index 5552b9dd72c01ed8d9cac8396e02751452334713..81e75e1ea308ab328ece2fa14c5b7ce539d144d4 100644
--- a/docs/library/machine.UART.rst
+++ b/docs/library/machine.UART.rst
@@ -37,7 +37,7 @@ using the standard stream methods::
     uart.readinto(buf)  # read and store into the given buffer
     uart.write('abc')   # write the 3 characters
 
-.. only:: port_machineoard
+.. only:: port_pyboard
 
     Individual characters can be read/written using::
 
@@ -48,9 +48,6 @@ using the standard stream methods::
 
         uart.any()               # returns True if any characters waiting
 
-    *Note:* The stream functions ``read``, ``write``, etc. are new in MicroPython v1.3.4.
-    Earlier versions use ``uart.send`` and ``uart.recv``.
-
 .. only:: port_wipy
 
     To check if there is anything to be read, use::