We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d7793 commit e039696Copy full SHA for e039696
src/test/kotlin/com/fasterxml/jackson/module/kotlin/DslTest.kt
@@ -55,13 +55,13 @@ class DslTest {
55
}
56
57
@Test
58
- fun creatJsonMapperWithEmptyInitializer() {
+ fun createJsonMapperWithEmptyInitializer() {
59
val mapper = jsonMapper {}
60
assertNotNull(mapper)
61
62
63
64
- fun creatJsonMapperWithBuilderOptions() {
+ fun createJsonMapperWithBuilderOptions() {
65
val mapper = jsonMapper {
66
enable(JsonReadFeature.ALLOW_JAVA_COMMENTS)
67
disable(JsonWriteFeature.QUOTE_FIELD_NAMES)
0 commit comments