Skip to content

Commit

Permalink
[DATALAD RUNCMD] Do interactive fixing of some ambigous typos
Browse files Browse the repository at this point in the history
=== Do not change lines below ===
{
 "chain": [],
 "cmd": "codespell -w -i 3 -C 2",
 "exit": 0,
 "extra_inputs": [],
 "inputs": [],
 "outputs": [],
 "pwd": "."
}
^^^ Do not change lines above ^^^
  • Loading branch information
yarikoptic committed Dec 6, 2023
1 parent ce34271 commit e6392bc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/addons-mercurial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Usage
-----
.. note:: This is **not** production code.

To publish a Mercurial repository by the share name 'hg', simply add thes lines
To publish a Mercurial repository by the share name 'hg', simply add these lines
to the configuration file::

# Publish a Mercurial repository
Expand Down
2 changes: 1 addition & 1 deletion docs/source/addons-mysql.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The table's columns are mad accessible as live properties:

Usage
-----
To publish an MySQL database, simply add thes lines to the configuration file::
To publish an MySQL database, simply add these lines to the configuration file::

### Publish an MySQL 'world' database as share '/world-db'
from wsgidav.samples.mysql_dav_provider import MySQLBrowserProvider
Expand Down
2 changes: 1 addition & 1 deletion docs/source/addons-virtual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ contains some virtual files with additional information:

Usage
-----
To publish the sample virtual resources, simply add thes lines to the
To publish the sample virtual resources, simply add these lines to the
configuration file::

# Publish a virtual structure
Expand Down
2 changes: 1 addition & 1 deletion setup_bdist_msi.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

# NOTE: isort must not chage this import order:
# NOTE: isort must not change this import order:
# isort: skip_file

import os
Expand Down
2 changes: 1 addition & 1 deletion tests/davclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def object_to_etree(parent, obj, namespace=""):

elif type(obj) is dict:
# If the object is a dictionary we"ll need to parse it and send it back
# recusively
# recursively
for key, value in obj.items():
if key.startswith("{") is False:
key_etree = ElementTree.SubElement(parent, "{%s}%s" % (namespace, key))
Expand Down
2 changes: 1 addition & 1 deletion wsgidav/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def init_logging(config):
The base logger is filtered by the `verbose` configuration option.
Log entries will have a time stamp and thread id.
**Note:** init_logging() is automatically calle if an application adds
**Note:** init_logging() is automatically called if an application adds
``"logging": { "enable": true }`` to the configuration.
Module loggers
Expand Down

0 comments on commit e6392bc

Please sign in to comment.