From 8fd011431c1e780a0aed497109f4c32fdab97014 Mon Sep 17 00:00:00 2001 From: Devin Smith Date: Wed, 3 Jan 2024 12:41:00 -0800 Subject: [PATCH] Add additional JsPlugin documentation (#4950) Follow-up to #4925 --- plugin/src/main/java/io/deephaven/plugin/js/JsPlugin.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/src/main/java/io/deephaven/plugin/js/JsPlugin.java b/plugin/src/main/java/io/deephaven/plugin/js/JsPlugin.java index 278ce7f079e..1996b9c6290 100644 --- a/plugin/src/main/java/io/deephaven/plugin/js/JsPlugin.java +++ b/plugin/src/main/java/io/deephaven/plugin/js/JsPlugin.java @@ -43,8 +43,7 @@ * } * * - * and the file "/path-to/my-plugin/dist/index.js" would be served at "js-plugins/foo/dist/index.js". All other files of - * the form "/path-to/my-plugin/{somePath}" will be served at "js-plugins/foo/{somePath}". + * and all files of the form "/path-to/my-plugin/{somePath}" would be served at "js-plugins/foo/{somePath}". */ @Immutable @BuildableStyle @@ -55,8 +54,9 @@ public static Builder builder() { } /** - * The JS plugin name. The JS plugin contents will be served via the URL path "js-plugins/{name}/", as well as - * included as the "name" field for the manifest entry in "js-plugins/manifest.json". + * The JS plugin name. The JS plugin contents will be served under the URL path "js-plugins/{name}/", as well as + * included as the "name" field for the manifest entry in "js-plugins/manifest.json". The "/" character will not be + * URL encoded - the name "@example/foo" would be served under the URL path "js-plugins/@example/foo/". * * @return the name */