From: PJ Fanning Date: Fri, 2 Feb 2018 11:59:58 +0000 (+0000) Subject: fix further typo in exception message X-Git-Tag: REL_4_0_0_FINAL~257 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a911347aae82b44d6bf9c894a9846c28f7fb338f;p=poi.git fix further typo in exception message git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1822948 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java index 722c18e15d..cd5a3bb766 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java @@ -118,7 +118,7 @@ public class XSSFCellStyle implements CellStyle { */ public void verifyBelongsToStylesSource(StylesTable src) { if(this._stylesSource != src) { - 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?"); + 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 different workbook?"); } }