From c56dd51a5dce55682049aba556aa7e75fbee07bf Mon Sep 17 00:00:00 2001 From: Mitar Date: Sat, 7 May 2016 14:35:03 -0700 Subject: [PATCH] Explain that connection is provided when call recurse into other methods. --- packages/ddp-common/method_invocation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ddp-common/method_invocation.js b/packages/ddp-common/method_invocation.js index a6b369f005..4ec21dde09 100644 --- a/packages/ddp-common/method_invocation.js +++ b/packages/ddp-common/method_invocation.js @@ -51,7 +51,7 @@ DDPCommon.MethodInvocation = function (options) { // On the server, the connection this method call came in on. /** - * @summary Access inside a method invocation. The [connection](#meteor_onconnection) that this method was received on. `null` if the method is not associated with a connection, eg. a server initiated method call. + * @summary Access inside a method invocation. The [connection](#meteor_onconnection) that this method was received on. `null` if the method is not associated with a connection, eg. a server initiated method call. Calls to methods made from a server method which was in turn initiated from the client share the same `connection`. * @locus Server * @name connection * @memberOf DDPCommon.MethodInvocation