Skip to content

Commit f7fa08f

Browse files
Fix typo (#115)
* fix(CsvReaderTest): typo * fix(StringReaderTest): typo * fix(CsvWriterTest): typo Co-authored-by: satokuuuuuun <51846075+satokuuuuuun@users.noreply.github.com>
1 parent 8248323 commit f7fa08f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvReaderTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class CsvReaderTest : WordSpec({
4747
)
4848
result shouldBe listOf(listOf("a", "b", "c"), listOf("d", "e", "f"))
4949
}
50-
"read csv with line separater" {
50+
"read csv with line separator" {
5151
val result = csvReader().readAll(
5252
"""a,b,c,"x","y
5353
| hoge"

src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/CsvWriterTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class CsvWriterTest : WordSpec({
143143
val actual = readTestFile(Charset.forName("SJIS"))
144144
actual shouldBe "あ,い\r\n"
145145
}
146-
"write csv with '|' demimiter" {
146+
"write csv with '|' delimiter" {
147147
val row1 = listOf("a", "b")
148148
val row2 = listOf("c", "d")
149149
val expected = "a|b\r\nc|d\r\n"

src/jvmTest/kotlin/com/github/doyaaaaaken/kotlincsv/client/StringReaderTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class StringReaderTest : WordSpec({
1919
)
2020
result shouldBe listOf(listOf("a", "b", "c"), listOf("d", "e", "f"))
2121
}
22-
"read csv with line separater" {
22+
"read csv with line separator" {
2323
val result = readAll(
2424
"""a,b,c,"x","y
2525
| hoge"

0 commit comments

Comments
 (0)