diff --git a/docs/topicguides/dominoserver.md b/docs/topicguides/dominoserver.md index d21bdeca..75c316d8 100644 --- a/docs/topicguides/dominoserver.md +++ b/docs/topicguides/dominoserver.md @@ -84,7 +84,7 @@ kubectl cp voltmxgo-drapi-848d9fc9f9-9vcgf:/local/notesdata/admin.id domino-id.i Here, the `cp` command copies the file `/local/notesdata/admin.id` out of the container `voltmxgo-drapi-848d9fc9f9-9vcgf` to the file `domino-id.id` in the current working directory. The flag `-n mxgo` indicates that the Kubernetes namespace is `mxgo` and the flag `-c drapi` indicates using the drapi container within the Domino DRAPI pod. -Similiarly, you could copy the local file `foo.bar` into the container's `/tmp` directory like this: +Similarly, you could copy the local file `foo.bar` into the container's `/tmp` directory like this: ```{ .yaml .no-copy } kubectl cp foo.bar voltmxgo-drapi-848d9fc9f9-9vcgf:/tmp/foo.bar -n mxgo -c drapi diff --git a/docs/topicguides/method.md b/docs/topicguides/method.md index c31aacce..3504c918 100644 --- a/docs/topicguides/method.md +++ b/docs/topicguides/method.md @@ -9,7 +9,7 @@ For form-based data models, a number of methods including standard CRUD operatio - POST :`Create` new Domino document containing the specified fields. - GET :`Read` existing Domino documents, returning zero or more documents. - PUT :`Update` an existing document, replacing all specified fields. If a field is omitted from the payload, it's removed from the document in Domino. -- DELET :`Delete` the specified document. +- DELETE :`Delete` the specified document. - PATCH :`Update` an existing document, replacing only the specified fields. If a field is omitted from the payload, the field value in the Domino document isn't modified. - createBinary - `Create` a new attachment file to attach to a specified Domino document. - getBinary - `Read` an existing attachment from a specified Domino document.