YETUS-120 Added missing @params to patchfiles.sh Signed-off-by: Allen Wittenauer <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/de19e7b9 Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/de19e7b9 Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/de19e7b9 Branch: refs/heads/master Commit: de19e7b983c5358d60aef6f0199b78aa402ddd31 Parents: 8d459bb Author: jaoki <[email protected]> Authored: Thu Oct 22 00:47:22 2015 -0700 Committer: Allen Wittenauer <[email protected]> Committed: Fri Oct 23 21:05:59 2015 -0700 ---------------------------------------------------------------------- dev-support/core.d/patchfiles.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/de19e7b9/dev-support/core.d/patchfiles.sh ---------------------------------------------------------------------- diff --git a/dev-support/core.d/patchfiles.sh b/dev-support/core.d/patchfiles.sh index 567e80e..7bb2f8b 100755 --- a/dev-support/core.d/patchfiles.sh +++ b/dev-support/core.d/patchfiles.sh @@ -134,9 +134,7 @@ function locate_patch ## @description just adding files ## @audience public ## @stability stable -## @param filename -## @param command -## @param [..] +## @param log filename ## @replaceable no ## @returns $? function patchfile_verify_zero @@ -188,6 +186,7 @@ function patchfile_verify_zero ## @replaceable no ## @audience private ## @stability evolving +## @param path to patch file to dryrun function gitapply_dryrun { declare patchfile=$1 @@ -219,6 +218,7 @@ function gitapply_dryrun ## @replaceable no ## @audience private ## @stability evolving +## @param path to patch file to dryrun function patchcmd_dryrun { declare patchfile=$1 @@ -251,6 +251,7 @@ function patchcmd_dryrun ## @replaceable no ## @audience private ## @stability evolving +## @param path to patch file to dryrun function patchfile_dryrun_driver { declare patchfile=$1 @@ -276,6 +277,7 @@ function patchfile_dryrun_driver ## @replaceable no ## @audience private ## @stability evolving +## @param path to patch file to apply function gitapply_apply { declare patchfile=$1 @@ -295,6 +297,7 @@ function gitapply_apply ## @replaceable no ## @audience private ## @stability evolving +## @param path to patch file to apply function patchcmd_apply { declare patchfile=$1 @@ -309,6 +312,7 @@ function patchcmd_apply ## @replaceable no ## @audience private ## @stability evolving +## @param path to patch file to apply function patchfile_apply_driver { declare patchfile=$1 @@ -323,4 +327,4 @@ function patchfile_apply_driver return 1 fi return 0 -} \ No newline at end of file +}
