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.
KeyNotFound
1 parent e93beb3 commit e986cd4Copy full SHA for e986cd4
skiplang/prelude/src/stdlib/serialization/JSON.sk
@@ -198,7 +198,7 @@ private fun indent(write: .String -> void, nspaces: Int): void {
198
199
class KeyNotFoundError(key: .String) extends Serialization.SerializationError {
200
fun getMessage(): .String {
201
- "Key '" + this.key + "'not found";
+ "Key '" + this.key + "' not found";
202
}
203
fun toString(): .String {
204
`KeyNotFoundError: ${this.getMessage()}`
0 commit comments