Skip to content

Commit 4bb3ffe

Browse files
committed
Apply #250 fix a minor typo in the text styles example
1 parent 7a42802 commit 4bb3ffe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/elements.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Inline style examples:
8888
$textrun = $section->addTextRun();
8989
$textrun->addText('I am bold', array('bold' => true));
9090
$textrun->addText('I am italic', array('italic' => true));
91-
$textrun->addText('I am colored, array('color' => 'AACC00'));
91+
$textrun->addText('I am colored', array('color' => 'AACC00'));
9292
9393
Defined style examples:
9494

docs/src/documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ $section->addText('I am simple paragraph', $fontStyle, $paragraphStyle);
495495
$textrun = $section->addTextRun();
496496
$textrun->addText('I am bold', array('bold' => true));
497497
$textrun->addText('I am italic', array('italic' => true));
498-
$textrun->addText('I am colored, array('color' => 'AACC00'));
498+
$textrun->addText('I am colored', array('color' => 'AACC00'));
499499
```
500500

501501
Defined style examples:

0 commit comments

Comments
 (0)