From 0e1400b0a9ea43af3198266c78ca9744eff9c115 Mon Sep 17 00:00:00 2001 From: Brian Lachniet Date: Thu, 26 Oct 2017 20:54:57 -0400 Subject: [PATCH] Fix typos in README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 84accee..4bd5319 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ ## Features * Authentication (HTTP Basic, OAuth, Session Cookie) -* Create and receive issues +* Create and retrieve issues * Create and retrieve issue transitions (status updates) -* Call every API endpoint of the JIRA, even it is not directly implemented in this library +* Call every API endpoint of the JIRA, even if it is not directly implemented in this library This package is not JIRA API complete (yet), but you can call every API endpoint you want. See [Call a not implemented API endpoint](#call-a-not-implemented-api-endpoint) how to do this. For all possible API endpoints of JRIA have a look at [latest JIRA REST API documentation](https://docs.atlassian.com/jira/REST/latest/). @@ -86,7 +86,7 @@ Some actions require an authenticated user. #### Authenticate with basic auth -Here is an example with a basic auth authentification. +Here is an example with basic auth authentication. ```go package main @@ -114,7 +114,7 @@ func main() { #### Authenticate with session cookie -Here is an example with a session cookie authentification. +Here is an example with session cookie authentication. ```go package main