Removed accommodate typos

This commit is contained in:
JefftheBest1
2017-01-12 13:33:10 +11:00
committed by showell
parent f0afa3e8df
commit a549ed6e65
3 changed files with 3 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ take input from both a cron job and a Zulip stream, and it may
write to both a Zulip stream and a third party calendar tool. For
the scope of this document, we won't spend a lot of time talking
about how to build these types of apps, but we are aware that
any solution needs to accomodate multiple sources and targets.
any solution needs to accommodate multiple sources and targets.
### World Reader/Zulip Reader

View File

@@ -1255,7 +1255,7 @@ def re_map_foreign_keys(data, table, field_name, related_table, verbose=False):
# type: (TableData, TableName, Field, TableName, bool) -> None
'''
We occasionally need to assign new ids to rows during the
import/export process, to accomodate things like existing rows
import/export process, to accommodate things like existing rows
already being in tables. See bulk_import_client for more context.
The tricky part is making sure that foreign key references

View File

@@ -19,7 +19,7 @@ class Command(BaseCommand):
help = """Read JSON lines from a file and enqueue them to a worker queue.
Each line in the file should either be a JSON payload or two tab-separated
fields, the second of which is a JSON payload. (The latter is to accomodate
fields, the second of which is a JSON payload. (The latter is to accommodate
the format of error files written by queue workers that catch exceptions--their
first field is a timestamp that we ignore.)