From: vyshane Date: Mon, 4 Sep 2006 08:19:23 +0000 (+0000) Subject: Re-worded comment to make more sense X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=17951759722a89ab63829c07012beea9634fdfaf;p=moodle.git Re-worded comment to make more sense --- diff --git a/lib/pdflib.php b/lib/pdflib.php index 5faf78b27e..aabdb54533 100644 --- a/lib/pdflib.php +++ b/lib/pdflib.php @@ -38,12 +38,12 @@ * with TCPDF. * * Example usage: - * $pdf = new pdf; - * $pdf->print_header = false; - * $pdf->print_footer = false; - * $pdf->AddPage(); - * $pdf->Write(5, 'Hello World!'); - * $pdf->Output(); + * $doc = new pdf; + * $doc->print_header = false; + * $doc->print_footer = false; + * $doc->AddPage(); + * $doc->Write(5, 'Hello World!'); + * $doc->Output(); * * @author Vy-Shane Sin Fat * @license http://www.gnu.org/copyleft/gpl.html GNU Public License @@ -94,7 +94,7 @@ class pdf extends TCPDF { /** * Return fonts path - * Overriden from class TCPDF + * Overriding TCPDF::_getfontpath() */ function _getfontpath() { global $CFG; @@ -128,4 +128,4 @@ class pdf extends TCPDF { } // End class pdf -?> +?> \ No newline at end of file