Skip to content

Commit 65f8618

Browse files
mpcjanssenileasile
authored andcommitted
Fix file extension in language_info (#36)
1 parent 6d97777 commit 65f8618

File tree

1 file changed

+1
-1
lines changed
  • src/main/kotlin/org/jetbrains/kotlin/jupyter

1 file changed

+1
-1
lines changed

src/main/kotlin/org/jetbrains/kotlin/jupyter/protocol.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fun JupyterConnection.Socket.shellMessagesHandler(msg: Message, repl: ReplForJup
3232
"language_info" to jsonObject(
3333
"name" to "kotlin",
3434
"codemirror_mode" to "text/x-kotlin",
35-
"file_extension" to "kt"
35+
"file_extension" to ".kt"
3636
),
3737

3838
// Jupyter lab Console support

0 commit comments

Comments
 (0)