# HG changeset patch # User leminhnguyen # Date 1659934712 -25200 # Node ID 82d0fef3d6e4950e11ddf6a42e9d469a04f20498 # Parent b4a77779aca536af78461643b2249fc2a5910b16 correct some words and import statement in the doc string diff -r b4a77779aca5 -r 82d0fef3d6e4 auditok/core.py --- a/auditok/core.py Wed Nov 03 16:35:39 2021 +0800 +++ b/auditok/core.py Mon Aug 08 11:58:32 2022 +0700 @@ -668,12 +668,12 @@ @property def sampling_rate(self): - """Samling rate of audio data.""" + """Sampling rate of audio data.""" return self._sampling_rate @property def sr(self): - """Samling rate of audio data, alias for `sampling_rate`.""" + """Sampling rate of audio data, alias for `sampling_rate`.""" return self._sampling_rate @property @@ -1131,7 +1131,7 @@ immediately follows the latest delivered token: >>> from auditok.core import StreamTokenizer - >>> from StringDataSource, DataValidator + >>> from auditok.util import StringDataSource, DataValidator >>> class UpperCaseChecker(DataValidator): >>> def is_valid(self, frame):