From add43975fc75b61dfdb401d97893936445df5066 Mon Sep 17 00:00:00 2001 From: zumbrunn Date: Thu, 13 Dec 2007 18:30:16 +0000 Subject: [PATCH] made some minor @see tag changes to please the new jsdoc-toolkit based docs --- core/Filters.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Filters.js b/core/Filters.js index d6962906..f520ed49 100644 --- a/core/Filters.js +++ b/core/Filters.js @@ -94,7 +94,7 @@ function trim_filter(input) { * Removes all tags from a String. * Currently simply wraps Helma's stripTags-method. * - * @see stripTags + * @see global.stripTags */ function stripTags_filter(input) { return stripTags((input || "").toString()); @@ -105,7 +105,7 @@ function stripTags_filter(input) { * Escapes the characters in a String using XML entities. * Currently simply wraps Helma's encodeXml-method. * - * @see encodeXml + * @see global.encodeXml */ function escapeXml_filter(input) { return encodeXml((input || "").toString());