Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Correct instances of "retriver" to "retriever"
  • Loading branch information
noble906 committed Mar 28, 2020
1 parent 7ea4351 commit 28c0ec7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,12 +460,12 @@ libraryJob.run()
libraryJob.libraryResource(net/courtanet/jenkins/request.json)
libraryJob.sh(curl -H 'Content-Type: application/json' -X POST -d '{"name" : "Ben"}' http://acme.com)
```
### Library Source Retrivers
### Library Source Retriever
There are a few types of `SourceRetriever` implementation in addition to previously
discribed `GitSource` you can use for different applications

#### ProjectSource Retriver
`ProjectSource` retriver is useful if you write tests for the library itself.
#### ProjectSource Retriever
`ProjectSource` retriever is useful if you write tests for the library itself.
So it lets you to load the library files directly from project root folder (where `src`, `vars`, ... are loacted)

```
Expand Down Expand Up @@ -505,8 +505,8 @@ Then you need you can use `projectSource` to point library files location
}
```

#### LocalSource Retriver
`LocalSource` retriver is useful if you want to verify how well your library integrates
#### LocalSource Retriever
`LocalSource` retriever is useful if you want to verify how well your library integrates
with the pipelines. For example you may use pre-copied library files of different versions.

```groovy
Expand All @@ -528,7 +528,7 @@ with the pipelines. For example you may use pre-copied library files of differen
...
```

The retriver assumes that library files are located at
The retriever assumes that library files are located at
`/var/tmp/commons@master` folder
```
$ tree -L 1 /var/tmp/commons@master
Expand Down

0 comments on commit 28c0ec7

Please sign in to comment.