summaryrefslogtreecommitdiff
path: root/gdata/services/documents/gdata-documents-service.c
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2020-06-18 13:47:21 +0100
committerPhilip Withnall <withnall@endlessm.com>2020-06-18 13:47:40 +0100
commit772db1f35c077fed6ec9357cd7990eedeb90e13a (patch)
tree195e41d9f1c3813ff0904e5c17be818c4508e57d /gdata/services/documents/gdata-documents-service.c
parent6901ab22a1cbc41b89fa84f6121a1233bce76657 (diff)
downloadlibgdata-772db1f35c077fed6ec9357cd7990eedeb90e13a.tar.gz
all: Fix various typos and incorrect terminology
Done using: ``` codespell \ --builtin clear,rare,usage \ --skip './po/*' --skip './help/*/*.po' --skip './.git/*' --skip './NEWS*' \ --write-changes . ``` and then some manual checking and editing. Signed-off-by: Philip Withnall <withnall@endlessm.com>
Diffstat (limited to 'gdata/services/documents/gdata-documents-service.c')
-rw-r--r--gdata/services/documents/gdata-documents-service.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdata/services/documents/gdata-documents-service.c b/gdata/services/documents/gdata-documents-service.c
index f0c919ee..93bc8f71 100644
--- a/gdata/services/documents/gdata-documents-service.c
+++ b/gdata/services/documents/gdata-documents-service.c
@@ -727,7 +727,7 @@ _upload_checks (GDataDocumentsService *self, GDataDocumentsDocument *document, G
*
* If @document is %NULL, only the document data will be uploaded. The new document entry will be named using @slug, and will have default metadata.
*
- * The stream returned by this function should be written to using the standard #GOutputStream methods, asychronously or synchronously. Once the stream
+ * The stream returned by this function should be written to using the standard #GOutputStream methods, asynchronously or synchronously. Once the stream
* is closed (using g_output_stream_close()), gdata_documents_service_finish_upload() should be called on it to parse and return the updated
* #GDataDocumentsDocument for the document. This must be done, as @document isn't updated in-place.
*
@@ -798,7 +798,7 @@ gdata_documents_service_upload_document (GDataDocumentsService *self, GDataDocum
* If @query is non-%NULL and #GDataDocumentsUploadQuery:convert is %FALSE, @document must be an instance of #GDataDocumentsDocument. Otherwise,
* @document must be a subclass of it, such as #GDataDocumentsPresentation.
*
- * The stream returned by this function should be written to using the standard #GOutputStream methods, asychronously or synchronously. Once the stream
+ * The stream returned by this function should be written to using the standard #GOutputStream methods, asynchronously or synchronously. Once the stream
* is closed (using g_output_stream_close()), gdata_documents_service_finish_upload() should be called on it to parse and return the updated
* #GDataDocumentsDocument for the document. This must be done, as @document isn't updated in-place.
*
@@ -868,7 +868,7 @@ _update_checks (GDataDocumentsService *self, GError **error)
* upload to fail, and the entire document will have to be re-uploaded. It is recommended that gdata_documents_service_update_document_resumable()
* be used instead.
*
- * The stream returned by this function should be written to using the standard #GOutputStream methods, asychronously or synchronously. Once the stream
+ * The stream returned by this function should be written to using the standard #GOutputStream methods, asynchronously or synchronously. Once the stream
* is closed (using g_output_stream_close()), gdata_documents_service_finish_upload() should be called on it to parse and return the updated
* #GDataDocumentsDocument for the document. This must be done, as @document isn't updated in-place.
*
@@ -931,7 +931,7 @@ gdata_documents_service_update_document (GDataDocumentsService *self, GDataDocum
* <ulink type="http" url="http://code.google.com/apis/gdata/docs/resumable_upload.html">resumable upload</ulink> which allows for correction of
* transmission errors without re-uploading the entire file. Use of this method is preferred over gdata_documents_service_update_document().
*
- * The stream returned by this function should be written to using the standard #GOutputStream methods, asychronously or synchronously. Once the stream
+ * The stream returned by this function should be written to using the standard #GOutputStream methods, asynchronously or synchronously. Once the stream
* is closed (using g_output_stream_close()), gdata_documents_service_finish_upload() should be called on it to parse and return the updated
* #GDataDocumentsDocument for the document. This must be done, as @document isn't updated in-place.
*