Skip to content

Commit

Permalink
fix: typo in edit message (#1722)
Browse files Browse the repository at this point in the history
* Fix typo in edit message

* apply feedback
  • Loading branch information
tarilabs committed Feb 9, 2024
1 parent c1fff3d commit bd0c49a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/dev/jbang/cli/Init.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ public Integer doCall() throws IOException {
+ "' or edit it using 'jbang edit --open=[editor] "
+ renderedScriptOrFile + "' where [editor] is your editor or IDE, e.g. '"
+ Edit.knownEditors[new Random().nextInt(Edit.knownEditors.length)]
+ "'. If your IDE supports JBang, you can edit the directory instead: 'jbang edit . '"
+ renderedScriptOrFile + ". See https://jbang.dev/ide");
+ "'. If your IDE supports JBang, you can edit the directory instead: 'jbang edit . "
+ renderedScriptOrFile + "'. See https://jbang.dev/ide");
}
return EXIT_OK;
}
Expand Down

0 comments on commit bd0c49a

Please sign in to comment.