From 838d5c0401dcedf9d54da73a1bb56129016f3fb7 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Wed, 10 Feb 2016 12:30:46 -0800 Subject: [PATCH] chore(spelling): s/primative/primitive/ --- dm/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dm/client.go b/dm/client.go index b95a59356..217508b05 100644 --- a/dm/client.go +++ b/dm/client.go @@ -103,7 +103,7 @@ func (c *Client) CallService(path, method, action string, dest interface{}, read return nil } -// callHTTP is a low-level primative for executing HTTP operations. +// callHTTP is a low-level primitive for executing HTTP operations. func (c *Client) callHTTP(path, method, action string, reader io.ReadCloser) (string, error) { request, err := http.NewRequest(method, path, reader)