ktorm
ktorm copied to clipboard
Quick typo
In https://www.ktorm.org/en/entities-and-column-binding.html#Serialization
Besides of JDK serialization, the ktorm-jackson module also supports serializing entities in JSON format. This module provides an extension for Jackson, the famous JSON framework in Java word. It supports serializing entity objects into JSON format and parsing JSONs as entity objects. We just need to register the KtormModule into an ObjectMapper:
Suppose to be world
Thank you.