]> git.mjollnir.org Git - moodle.git/commitdiff
Re-worded comment to make more sense
authorvyshane <vyshane>
Mon, 4 Sep 2006 08:19:23 +0000 (08:19 +0000)
committervyshane <vyshane>
Mon, 4 Sep 2006 08:19:23 +0000 (08:19 +0000)
lib/pdflib.php

index 5faf78b27ec7b337af71c5a9055b5e0ef009c854..aabdb5453382dfc90d3d1ca4431783d5c65eb89a 100644 (file)
  * 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