Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 1066608

Browse files
daixiang0kevinburke
authored andcommitted
delete all duplicate empty blanks
Signed-off-by: Xiang Dai <[email protected]>
1 parent e2709be commit 1066608

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ When [filing an issue](https://github.com/golang/dep/issues/new), make sure to a
2424
## Contributing code
2525

2626
Let us know if you are interested in working on an issue by leaving a comment
27-
on the issue in GitHub. This helps avoid multiple people unknowingly
27+
on the issue in GitHub. This helps avoid multiple people unknowingly
2828
working on the same issue.
2929

3030
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
PROJECT CONSTRAINT VERSION REVISION LATEST PKGS USED
2-
github.com/sdboyer/deptest ^0.8.0 v0.8.0 ff2948a v0.8.1 1
3-
github.com/sdboyer/deptestdos v2.0.0 v2.0.0 5c60720 v2.0.0 1
2+
github.com/sdboyer/deptest ^0.8.0 v0.8.0 ff2948a v0.8.1 1
3+
github.com/sdboyer/deptestdos v2.0.0 v2.0.0 5c60720 v2.0.0 1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
PROJECT CONSTRAINT REVISION LATEST
2-
github.com/carolynvs/go-dep-test ^0.1.0 b9c5511 4069198
2+
github.com/carolynvs/go-dep-test ^0.1.0 b9c5511 4069198
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
PROJECT CONSTRAINT VERSION REVISION LATEST PKGS USED
2-
github.com/sdboyer/deptest v0.8.1 (override) v0.8.1 3f4c3be v0.8.1 1
3-
github.com/sdboyer/deptestdos v2.0.0 v2.0.0 5c60720 v2.0.0 1
2+
github.com/sdboyer/deptest v0.8.1 (override) v0.8.1 3f4c3be v0.8.1 1
3+
github.com/sdboyer/deptestdos v2.0.0 v2.0.0 5c60720 v2.0.0 1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
PROJECT CONSTRAINT VERSION REVISION LATEST PKGS USED
2-
github.com/sdboyer/deptest v1.0.0 v1.0.0 ff2948a v1.0.0 1
3-
github.com/sdboyer/deptestdos a0196ba a0196ba 1
2+
github.com/sdboyer/deptest v1.0.0 v1.0.0 ff2948a v1.0.0 1
3+
github.com/sdboyer/deptestdos a0196ba a0196ba 1

docs/Gopkg.toml.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Dep uses per-project hash digests, computed after pruning and recorded in [Gopkg
241241
It is strongly recommended that you leave `vendor/` unmodified, in whatever state dep puts it in. However, this isn't always feasible. If you have no choice but to modify `vendor/` for a particular project, then add the project root for that project to `noverify`. This will have the following effects:
242242

243243
* `dep ensure` will ignore hash mismatches for the project, and only regenerate it in `vendor/` if absolutely necessary (prune options change, package list changes, version changes)
244-
* `dep check` will continue to report hash mismatches (albeit with an annotation about `noverify`) for the project, but will no longer exit 1.
244+
* `dep check` will continue to report hash mismatches (albeit with an annotation about `noverify`) for the project, but will no longer exit 1.
245245

246246
`noverify` can also be used to preserve certain excess paths that would otherwise be removed; for example, adding `WORKSPACE` to the `noverify` list would allow you to preserve `vendor/WORKSPACE`, which can help with some Bazel-based workflows.
247247

docs/env-vars.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Environment variables are passed through to subcommands, and therefore can be us
1616

1717
### `DEPCACHEAGE`
1818

19-
If set to a [duration](https://golang.org/pkg/time/#ParseDuration) (e.g. `24h`), it will enable caching of metadata from source repositories:
19+
If set to a [duration](https://golang.org/pkg/time/#ParseDuration) (e.g. `24h`), it will enable caching of metadata from source repositories:
2020

2121
* Lists of published versions
2222
* The contents of a project's `Gopkg.toml` file, at a particular version

website/blog/2018-07-25-announce-v0.5.0.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ github.com/pkg/errors: missing from vendor
7373
github.com/aws-sdk-go/aws: hash of vendored tree not equal to digest in Gopkg.lock
7474
```
7575

76-
`dep check` is also designed for use in automated tooling:
76+
`dep check` is also designed for use in automated tooling:
7777

7878
* If any of its checks fail, it will exit 1. Passing `-q` will suppress any output, for maximum automated utility.
79-
* It's very fast; the checks it performs by default cannot hit the network. With a warm disk cache, it'll complete in seconds even on enormous projects.
79+
* It's very fast; the checks it performs by default cannot hit the network. With a warm disk cache, it'll complete in seconds even on enormous projects.
8080
* cannot hit the network, which makes it very fast. Even a large project could use it as a git pre-commit hook:
8181

8282
You can use it as a git pre-commit hook, to keep you from committing an out-of-sync project. This will set it up:

website/static/css/custom.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
Contains custom styles for whole site.
33
*/
44

0 commit comments

Comments
 (0)