Merge pull request #250 from zacharyrankin/master

Fix a minor typo in the text styles example
This commit is contained in:
Progi1984 2014-05-28 08:51:29 +02:00
commit 8c7efde9be
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,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: