mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Some spellchecking
This commit is contained in:
parent
9f966fb4a1
commit
2c3cf303db
6 changed files with 8 additions and 8 deletions
|
|
@ -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 <https://github.com/geier/khal>`_ is what
|
||||
you're looking for.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
4
setup.py
4
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']),
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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`
|
||||
|
|
|
|||
Loading…
Reference in a new issue