From f933872620f9d7974fbd0089aa5802b708f25d9f Mon Sep 17 00:00:00 2001 From: David Rowe Date: Thu, 28 Mar 2019 14:21:51 +1300 Subject: [PATCH] Address review comments. --- libraries/networking/src/ResourceCache.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/networking/src/ResourceCache.h b/libraries/networking/src/ResourceCache.h index b91edcdb5f..4e255c14d2 100644 --- a/libraries/networking/src/ResourceCache.h +++ b/libraries/networking/src/ResourceCache.h @@ -346,9 +346,9 @@ public: * @returns {ResourceObject} A resource object. * @example Prefetch a resource and wait until it has loaded. * // Replace AnimationCache with ModelCache, SoundCache, or TextureCache as appropriate. - * // TextureCache has it's own version of this function. + * // TextureCache has its own version of this function. * - * var resourceURL = "qrc:///avatar/animations/walk_bwd_fast.fbx"; + * var resourceURL = "https://s3-us-west-1.amazonaws.com/hifi-content/clement/production/animations/sitting_idle.fbx"; * var resourceObject = AnimationCache.prefetch(resourceURL); * * function checkIfResourceLoaded(state) {