You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by do...@apache.org on 2008/07/25 17:27:12 UTC

svn commit: r679834 - /incubator/shindig/trunk/features/opensocial-reference/idspec.js

Author: doll
Date: Fri Jul 25 08:27:11 2008
New Revision: 679834

URL: http://svn.apache.org/viewvc?rev=679834&view=rev
Log:
SHINDIG-472
Patch by Adam Winer. Fixed some typos in the idspec js to reference the correct newIdSpec method instead of the incorrect createIdSpec.



Modified:
    incubator/shindig/trunk/features/opensocial-reference/idspec.js

Modified: incubator/shindig/trunk/features/opensocial-reference/idspec.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/opensocial-reference/idspec.js?rev=679834&r1=679833&r2=679834&view=diff
==============================================================================
--- incubator/shindig/trunk/features/opensocial-reference/idspec.js (original)
+++ incubator/shindig/trunk/features/opensocial-reference/idspec.js Fri Jul 25 08:27:11 2008
@@ -34,15 +34,15 @@
  * Base interface for all id spec objects. Use this class when specifying which
  * people you want to fetch.
  *
- * For example, opensocial.createIdSpec({userId : 'VIEWER', groupId : 'FRIENDS'})
+ * For example, opensocial.newIdSpec({userId : 'VIEWER', groupId : 'FRIENDS'})
  *                means you are looking for all of the viewer's friends.
- * For example, opensocial.createIdSpec({userId : 'VIEWER',
- *                                       groupId : 'FRIENDS', networkDistance : 2})
+ * For example, opensocial.newIdSpec({userId : 'VIEWER',
+ *                                    groupId : 'FRIENDS', networkDistance : 2})
  *                means you are looking for all of the viewer's friends of friends.
- * For example, opensocial.createIdSpec({userId : 'OWNER'})
+ * For example, opensocial.newIdSpec({userId : 'OWNER'})
  *                means you are looking for the owner.
  *
- * Private, see opensocial.createIdSpec() for usage.
+ * Private, see opensocial.newIdSpec() for usage.
  *
  * @private
  * @constructor