Trivial: add the missing period

This patch adds the missing period in notes of BaseIOBackend.

Change-Id: If43d300239f9f72d5d62b85aa38e59763fe709e0
This commit is contained in:
Jiang Qin 2017-01-16 15:21:06 +08:00 committed by qin.jiang
parent ed0cf4dac0
commit 7038eb4f80

View File

@ -40,7 +40,7 @@ class BaseIOBackend(object):
@abc.abstractmethod
def seek(self, offset, from_what=0):
# 0 beg, 1 cur, 2 end
"""Change position in the backend
"""Change position in the backend.
"""
@ -59,7 +59,7 @@ class BaseIOBackend(object):
@abc.abstractmethod
def read(self):
"""Read data from the backend
"""Read data from the backend.
:return str: Data read from the backend.
"""