Skip to content

Commit

Permalink
Bugfixing
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-saurer committed Dec 27, 2021
1 parent b6e658b commit c98c021
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jupyter_Notebook_J_Examples/Steganography.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
"name": "jkernel"
},
"language_info": {
"file_extension": "ijs",
"file_extension": ".ijs",
"mimetype": "text/J",
"name": "J"
}
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The jkernel is a J programming language integration for the [Jupyter Notebook](h

* Updated for J903
* Improved code robustness
* Can export to .ijs scripts
* Bugfixes

## Prerequisites

Expand Down
2 changes: 1 addition & 1 deletion jkernel/jkernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class JKernel(Kernel):
language_info = {
'name' : 'J',
'mimetype' : 'text/J',
'file_extension' : 'ijs'
'file_extension' : '.ijs'
}
banner = 'J Programming Language - Jupyter Kernel'
help_links = [
Expand Down

0 comments on commit c98c021

Please sign in to comment.