Skip to content

Commit b343722

Browse files
committed
The implementationName should be the human-readable form
* According to the Language#getImplementationName() JavaDoc.
1 parent 451177b commit b343722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/truffleruby/RubyLanguage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@TruffleLanguage.Registration(
3636
name = "Ruby",
3737
id = TruffleRuby.LANGUAGE_ID,
38-
implementationName = TruffleRuby.ENGINE_ID,
38+
implementationName = "TruffleRuby",
3939
version = TruffleRuby.LANGUAGE_VERSION,
4040
characterMimeTypes = TruffleRuby.MIME_TYPE,
4141
defaultMimeType = TruffleRuby.MIME_TYPE,

0 commit comments

Comments
 (0)