From 391d7cbd9dfaee7da0c56a11762bb7052bd7fa6b Mon Sep 17 00:00:00 2001 From: MarkBaker Date: Mon, 2 Feb 2015 16:45:59 +0000 Subject: [PATCH] Fix use of < and > (by escaping) in documentation for createSheet() --- Documentation/markdown/Overview/06-Worksheets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/markdown/Overview/06-Worksheets.md b/Documentation/markdown/Overview/06-Worksheets.md index 1c2a9ea5..a6a231cc 100644 --- a/Documentation/markdown/Overview/06-Worksheets.md +++ b/Documentation/markdown/Overview/06-Worksheets.md @@ -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" where "" is the lowest number possible to guarantee that the title is unique. +A new worksheet created using this method will be called "Worksheet\" where "\" 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.