From 09f4897dd330e6ccf47e79da90fbef1776654604 Mon Sep 17 00:00:00 2001 From: Denilson Date: Wed, 26 Jun 2024 13:59:39 -0400 Subject: [PATCH] Update v3-docs/docs/api/meteor.md Co-authored-by: zodern --- v3-docs/docs/api/meteor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3-docs/docs/api/meteor.md b/v3-docs/docs/api/meteor.md index e3d3b4136f..2764abf70a 100644 --- a/v3-docs/docs/api/meteor.md +++ b/v3-docs/docs/api/meteor.md @@ -395,7 +395,7 @@ even if the method's writes are not available yet, you can specify an `onResultReceived` callback to [`Meteor.apply`](#Meteor-apply). ::: warning -Use `Meteor.call` only to invoke sync method. If you want to call invoke async methods, use `Meteor.callAsync`. +Use `Meteor.call` only to call methods that do not have a stub, or have a sync stub. If you want to call methods with an async stub, `Meteor.callAsync` can be used with any method. :::