]> source.dussan.org Git - poi.git/commitdiff
fix further typo in exception message
authorPJ Fanning <fanningpj@apache.org>
Fri, 2 Feb 2018 11:59:58 +0000 (11:59 +0000)
committerPJ Fanning <fanningpj@apache.org>
Fri, 2 Feb 2018 11:59:58 +0000 (11:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1822948 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java

index 722c18e15d216b490536f5d51168aa1c5299911a..cd5a3bb766c37289b644243b5a02224fc2642b0b 100644 (file)
@@ -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?");
         }
     }