From 0ef25faa7387c6d58a381bacd4fe54437041bc52 Mon Sep 17 00:00:00 2001 From: Rohith Date: Mon, 26 Mar 2018 12:00:33 +0530 Subject: [PATCH] MDL-61746 PARAM_CLEANHTML: Fix documentation typos --- lib/moodlelib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/moodlelib.php b/lib/moodlelib.php index a8259ae5eab..9e50c1e3fa5 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -115,8 +115,8 @@ define('PARAM_CAPABILITY', 'capability'); /** * PARAM_CLEANHTML - cleans submitted HTML code. Note that you almost never want - * to use this. The normal mode of operation is to use PARAM_RAW when recieving - * the input (required/optional_param or formslib) and then sanitse the HTML + * to use this. The normal mode of operation is to use PARAM_RAW when receiving + * the input (required/optional_param or formslib) and then sanitise the HTML * using format_text on output. This is for the rare cases when you want to * sanitise the HTML on input. This cleaning may also fix xhtml strictness. */