From 2c3cf303db338d9c3a1915ad34d22a0cf4b5f7b4 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 31 May 2014 19:40:06 +0200 Subject: [PATCH] Some spellchecking --- CONTRIBUTING.rst | 2 +- docs/changelog.rst | 4 ++-- setup.py | 4 ++-- vdirsyncer/__init__.py | 2 +- vdirsyncer/cli.py | 2 +- vdirsyncer/sync.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index c60fac2..8e2f1a5 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -10,7 +10,7 @@ * If you're suggesting a feature, keep in mind that vdirsyncer tries not to be a full calendar or contacts client, but rather just the piece of software - that syncronizes all the data. If you're looking for a viewer for the + that synchronizes all the data. If you're looking for a viewer for the calendar data you've synced, `khal `_ is what you're looking for. diff --git a/docs/changelog.rst b/docs/changelog.rst index c8ebed8..99bc5f3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -40,9 +40,9 @@ Version 0.1.5 - Many doc fixes -- vdirsyncer now doesn't necessarily need UIDs anymore for syncronization. +- vdirsyncer now doesn't necessarily need UIDs anymore for synchronization. - vdirsyncer now aborts if one collection got completely emptied between - syncronizations. See `#42`_. + synchronizations. See `#42`_. .. _`#42`: https://github.com/untitaker/vdirsyncer/issues/42 diff --git a/setup.py b/setup.py index e806f8e..33ca6aa 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ vdirsyncer ~~~~~~~~~~ - vdirsyncer is a syncronization tool for vdir. See the README for more + vdirsyncer is a synchronization tool for vdir. See the README for more details. :copyright: (c) 2014 Markus Unterwaditzer & contributors @@ -18,7 +18,7 @@ setup( author='Markus Unterwaditzer', author_email='markus@unterwaditzer.net', url='https://github.com/untitaker/vdirsyncer', - description='A syncronization tool for vdir', + description='A synchronization tool for vdir', license='MIT', long_description=open('README.rst').read(), packages=find_packages(exclude=['tests.*', 'tests']), diff --git a/vdirsyncer/__init__.py b/vdirsyncer/__init__.py index 3feb005..3f0fbc5 100644 --- a/vdirsyncer/__init__.py +++ b/vdirsyncer/__init__.py @@ -3,7 +3,7 @@ vdirsyncer ~~~~~~~~~~ - vdirsyncer is a syncronization tool for vdir. See the README for more + vdirsyncer is a synchronization tool for vdir. See the README for more details. :copyright: (c) 2014 Markus Unterwaditzer & contributors diff --git a/vdirsyncer/cli.py b/vdirsyncer/cli.py index f94ca9b..d1eb393 100644 --- a/vdirsyncer/cli.py +++ b/vdirsyncer/cli.py @@ -243,7 +243,7 @@ def _main(env, file_cfg): @sync_command.main('[pairs...]') def sync_main(context, pairs=None): ''' - Syncronize the given pairs. If no pairs are given, all will be + Synchronize the given pairs. If no pairs are given, all will be synchronized. Examples: diff --git a/vdirsyncer/sync.py b/vdirsyncer/sync.py index 7a85590..e93525e 100644 --- a/vdirsyncer/sync.py +++ b/vdirsyncer/sync.py @@ -70,7 +70,7 @@ def prepare_list(storage, href_to_status): def sync(storage_a, storage_b, status, conflict_resolution=None, force_delete=False): - '''Syncronizes two storages. + '''Synchronizes two storages. :param storage_a: The first storage :type storage_a: :class:`vdirsyncer.storage.base.Storage`