Apply #250 fix a minor typo in the text styles example

This commit is contained in:
Ivan Lanin 2014-05-29 18:13:57 +07:00
parent 7a42802b48
commit 4bb3ffe5bd
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ Inline style examples:
$textrun = $section->addTextRun();
$textrun->addText('I am bold', array('bold' => true));
$textrun->addText('I am italic', array('italic' => true));
$textrun->addText('I am colored, array('color' => 'AACC00'));
$textrun->addText('I am colored', array('color' => 'AACC00'));
Defined style examples:

View File

@ -495,7 +495,7 @@ $section->addText('I am simple paragraph', $fontStyle, $paragraphStyle);
$textrun = $section->addTextRun();
$textrun->addText('I am bold', array('bold' => true));
$textrun->addText('I am italic', array('italic' => true));
$textrun->addText('I am colored, array('color' => 'AACC00'));
$textrun->addText('I am colored', array('color' => 'AACC00'));
```
Defined style examples: