Apply #250 fix a minor typo in the text styles example
This commit is contained in:
parent
7a42802b48
commit
4bb3ffe5bd
@ -88,7 +88,7 @@ Inline style examples:
|
|||||||
$textrun = $section->addTextRun();
|
$textrun = $section->addTextRun();
|
||||||
$textrun->addText('I am bold', array('bold' => true));
|
$textrun->addText('I am bold', array('bold' => true));
|
||||||
$textrun->addText('I am italic', array('italic' => 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:
|
Defined style examples:
|
||||||
|
|
||||||
|
|||||||
@ -495,7 +495,7 @@ $section->addText('I am simple paragraph', $fontStyle, $paragraphStyle);
|
|||||||
$textrun = $section->addTextRun();
|
$textrun = $section->addTextRun();
|
||||||
$textrun->addText('I am bold', array('bold' => true));
|
$textrun->addText('I am bold', array('bold' => true));
|
||||||
$textrun->addText('I am italic', array('italic' => 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:
|
Defined style examples:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user