mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-12 11:06:28 +00:00
Fix use of < and > (by escaping) in documentation for createSheet()
This commit is contained in:
@@ -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>"� where "<n>"� is the lowest number possible to guarantee that the title is unique.
|
||||
A new worksheet created using this method will be called "Worksheet\<n\>"� where "\<n\>"� 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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user