Fix typo
[arvados-workbench2.git] / src / services / groups-service / groups-service.ts
index 1e6dff8e82b786ac31e765a436503fcb56bd6356..2a5a51a851b8e48a0741e085164dbaff9f6c7e8c 100644 (file)
@@ -12,7 +12,7 @@ import { CollectionResource } from "../../models/collection";
 import { ProjectResource } from "../../models/project";
 import { ProcessResource } from "../../models/process";
 
-export interface ContensArguments {
+export interface ContentsArguments {
     limit?: number;
     offset?: number;
     order?: OrderBuilder;
@@ -31,7 +31,7 @@ export default class GroupsService<T extends GroupResource = GroupResource> exte
         super(serverApi, "groups");
     }
 
-    contents(uuid: string, args: ContensArguments = {}): Promise<ListResults<GroupContentsResource>> {
+    contents(uuid: string, args: ContentsArguments = {}): Promise<ListResults<GroupContentsResource>> {
         const { filters, order, ...other } = args;
         const params = {
             ...other,