Fix use of < and > (by escaping) in documentation for createSheet()

This commit is contained in:
MarkBaker 2015-02-02 16:45:59 +00:00
parent 71dba49fff
commit 391d7cbd9d
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ You can add a new worksheet to the workbook using the `createSheet()` method of
$objPHPExcel->createSheet();
```
A new worksheet created using this method will be called "Worksheet<n>"<22> where "<n>"<22> is the lowest number possible to guarantee that the title is unique.
A new worksheet created using this method will be called "Worksheet\<n\>"<22> where "\<n\>"<22> is the lowest number possible to guarantee that the title is unique.
Alternatively, you can instantiate a new worksheet (setting the title to whatever you choose) and then insert it into your workbook using the addSheet() method.