diff --git a/pages/common/go-clean.md b/pages/common/go-clean.md
index 44a42ee7e1..c704ee850e 100644
--- a/pages/common/go-clean.md
+++ b/pages/common/go-clean.md
@@ -1,24 +1,20 @@
# go clean
-> Tool for removing object files and cached files.
-> More information: .
+> Remove object files and cached files.
+> More information: .
- Print the remove commands only:
`go clean -n`
-- Remove go build cache:
+- Remove build cache:
`go clean -cache`
-- Remove all test results in the go build cache :
+- Remove cached test results:
`go clean -testcache`
-- Remove go module download cache:
+- Remove module cache:
`go clean -modcache`
-
-- Remove all:
-
-`go clean -cache -testcache -modcache -i -r`