Fix small typo, closes PR #97 on Github.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1822937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2018-02-02 10:35:48 +00:00
parent 16c68a4f01
commit a487bee768

View File

@ -118,7 +118,7 @@ public class XSSFCellStyle implements CellStyle {
*/ */
public void verifyBelongsToStylesSource(StylesTable src) { public void verifyBelongsToStylesSource(StylesTable src) {
if(this._stylesSource != src) { if(this._stylesSource != src) {
throw new IllegalArgumentException("This Style does not belong to the supplied Workbook Stlyes Source. Are you trying to assign a style from one workbook to the cell of a differnt workbook?"); throw new IllegalArgumentException("This Style does not belong to the supplied Workbook Styles Source. Are you trying to assign a style from one workbook to the cell of a differnt workbook?");
} }
} }