Skip to content

Commit 90a3632

Browse files
committed
Updated readme
1 parent 19d6fec commit 90a3632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/AppServices/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Lookup | Get an item’s data using id property.
4040
void Update<T>(T item, Action<IRestResponse<T>> callback = null) where T : new();
4141
void Delete<T>(string id, Action<IRestResponse<T>> callback = null) where T : new();
4242
void Query<T>(CustomQuery query, Action<IRestResponse<List<T>>> callback = null) where T : new();
43-
void Query<T>(CustomQuery query, Action<IRestResponse<T>> callback = null) where T : INestedResults, new();
43+
void Query<T>(CustomQuery query, Action<IRestResponse<T>> callback = null) where T : INestedResults, new();
4444
void Lookup<T>(string id, Action<IRestResponse<T>> callback = null) where T : new();
4545

4646
## Sample usage

0 commit comments

Comments
 (0)