diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-12-01 11:33:25 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-12-01 11:33:25 +0000 |
commit | add71cb80adb570eddfcaf804e89c1c26bc4a38c (patch) | |
tree | dbf103e981917962aab9263e9fe517342e62775a /poi-scratchpad/src/test/java | |
parent | 43438ee6ef2faceb6407f7ef25460c778a9de7a6 (diff) | |
download | poi-add71cb80adb570eddfcaf804e89c1c26bc4a38c.tar.gz poi-add71cb80adb570eddfcaf804e89c1c26bc4a38c.zip |
spelling of embedded
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895452 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-scratchpad/src/test/java')
-rw-r--r-- | poi-scratchpad/src/test/java/org/apache/poi/hslf/extractor/TestExtractor.java | 6 | ||||
-rw-r--r-- | poi-scratchpad/src/test/java/org/apache/poi/hwpf/usermodel/TestPictures.java | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/poi-scratchpad/src/test/java/org/apache/poi/hslf/extractor/TestExtractor.java b/poi-scratchpad/src/test/java/org/apache/poi/hslf/extractor/TestExtractor.java index 303ca4293f..6b8a08ff2d 100644 --- a/poi-scratchpad/src/test/java/org/apache/poi/hslf/extractor/TestExtractor.java +++ b/poi-scratchpad/src/test/java/org/apache/poi/hslf/extractor/TestExtractor.java @@ -76,7 +76,7 @@ public final class TestExtractor { "\nThese are the notes on page two, again lacking formatting\n"; /** - * Where our embeded files live + * Where our embedded files live */ private static final POIDataSamples slTests = POIDataSamples.getSlideShowInstance(); @@ -197,7 +197,7 @@ public final class TestExtractor { } /** - * A powerpoint file with embeded powerpoint files + * A powerpoint file with embedded powerpoint files */ @Test void testExtractFromOwnEmbeded() throws IOException { @@ -230,7 +230,7 @@ public final class TestExtractor { } /** - * A powerpoint file with embeded powerpoint files + * A powerpoint file with embedded powerpoint files */ @Test void test52991() throws IOException { diff --git a/poi-scratchpad/src/test/java/org/apache/poi/hwpf/usermodel/TestPictures.java b/poi-scratchpad/src/test/java/org/apache/poi/hwpf/usermodel/TestPictures.java index b792289282..96caa82a24 100644 --- a/poi-scratchpad/src/test/java/org/apache/poi/hwpf/usermodel/TestPictures.java +++ b/poi-scratchpad/src/test/java/org/apache/poi/hwpf/usermodel/TestPictures.java @@ -139,21 +139,21 @@ public final class TestPictures { /** * When you embed another office document into Word, it stores * a rendered "icon" picture of what that document looks like. - * This image is re-created when you edit the embeded document, + * This image is re-created when you edit the embedded document, * then used as-is to speed things up. * Check that we can properly read one of these */ @Test void testEmbededDocumentIcon() { - // This file has two embeded excel files, an embeded powerpoint - // file and an embeded word file, in that order + // This file has two embedded excel files, an embedded powerpoint + // file and an embedded word file, in that order HWPFDocument doc = openSampleFile("word_with_embeded.doc"); // Check we don't break loading the pictures doc.getPicturesTable().getAllPictures(); PicturesTable pictureTable = doc.getPicturesTable(); - // Check the text, and its embeded images + // Check the text, and its embedded images Paragraph p; Range r = doc.getRange(); assertEquals(1, r.numSections()); |