From 47319e284169983e0b32cd38ca963821e104cc25 Mon Sep 17 00:00:00 2001 From: olivekl <83081275+olivekl@users.noreply.github.com> Date: Tue, 28 Sep 2021 16:41:47 -0400 Subject: [PATCH] Update write.md (#1084) Fix broken link: errors/errors.md Replace checks/frozen_deps.go with checks/pinned_dependencies.go Co-authored-by: Azeem Shaikh --- checks/write.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/checks/write.md b/checks/write.md index 10830b3c..383f8830 100644 --- a/checks/write.md +++ b/checks/write.md @@ -69,7 +69,7 @@ The steps to writting a check are as follow: `checker.CreateResultWithScore()` with one of the constants declared, such as `checker.HalfResultScore`. -6. Dealing with errors: see [../errors/errors.md](errors/errors/md). +6. Dealing with errors: see [errors/errors.md](/errors/errors.md). 7. Create unit tests for both low, high and inconclusive score. Put them in a file `checks/mycheck_test.go`. @@ -87,4 +87,4 @@ The steps to writting a check are as follow: For actual examples, look at [checks/binary_artifact.go](binary_artifact.go), [checks/code_review.go](code_review.go) and -[checks/frozen_deps.go](frozen_deps.go). +[checks/pinned_dependencies.go](pinned_dependencies.go).