From ac763a24ad58935f3cf3945119af90c87f02ccd7 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Fri, 2 Feb 2018 11:59:58 +0000 Subject: [PATCH] fix further typo in exception message 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 722c18e15..cd5a3bb76 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?"); } }