From 8762d626d0ee86e571eacdd5e38c18a7c74859c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 18 Mar 2019 06:24:41 +0100 Subject: [PATCH] File --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 97e6033..62b1389 100644 --- a/README.md +++ b/README.md @@ -1072,8 +1072,8 @@ Open ### File ```python -.seek(0) # Move to the start of the file. -.seek(offset) # Move 'offset' chars/bytes from the start. +.seek(0) # Moves to the start of the file. +.seek(offset) # Moves 'offset' chars/bytes from the start. .seek(offset, ) # Anchor: 0 start, 1 current pos., 2 end. ```