diff --git a/jetty-websocket/jetty-websocket-common/src/main/java/org/eclipse/jetty/websocket/common/JettyWebSocketFrameHandlerFactory.java b/jetty-websocket/jetty-websocket-common/src/main/java/org/eclipse/jetty/websocket/common/JettyWebSocketFrameHandlerFactory.java
index d9173bce8aa..e1f26a58bd0 100644
--- a/jetty-websocket/jetty-websocket-common/src/main/java/org/eclipse/jetty/websocket/common/JettyWebSocketFrameHandlerFactory.java
+++ b/jetty-websocket/jetty-websocket-common/src/main/java/org/eclipse/jetty/websocket/common/JettyWebSocketFrameHandlerFactory.java
@@ -67,7 +67,7 @@ import org.eclipse.jetty.websocket.core.Frame;
* Factory to create {@link JettyWebSocketFrameHandler} instances suitable for
* use with jetty-native websocket API.
*
- * Will create a {@link FrameHandler} suitable for use with classes/objects that:
+ * Will create a {@link org.eclipse.jetty.websocket.core.FrameHandler} suitable for use with classes/objects that:
*
*
* - Is @{@link org.eclipse.jetty.websocket.api.annotations.WebSocket} annotated
diff --git a/jetty-websocket/jetty-websocket-common/src/main/java/org/eclipse/jetty/websocket/common/invoke/InvokerUtils.java b/jetty-websocket/jetty-websocket-common/src/main/java/org/eclipse/jetty/websocket/common/invoke/InvokerUtils.java
index 812ecb54bce..6d6b52a7931 100644
--- a/jetty-websocket/jetty-websocket-common/src/main/java/org/eclipse/jetty/websocket/common/invoke/InvokerUtils.java
+++ b/jetty-websocket/jetty-websocket-common/src/main/java/org/eclipse/jetty/websocket/common/invoke/InvokerUtils.java
@@ -104,6 +104,10 @@ public class InvokerUtils
* Might need to drop calling args and/or reorder the calling args to fit
* the actual method being called.
*
+ * @param targetClass the target class for invocations of the resulting MethodHandle (also known as parameter 0)
+ * @param method the method to invoke
+ * @param callingArgs the calling arguments
+ * @return the MethodHandle for this set of CallingArgs
*/
public static MethodHandle mutatedInvoker(Class> targetClass, Method method, Arg... callingArgs)
{