Skip to content

Commit e5758ef

Browse files
author
Aaron Lane
committed
Fix spelling of "folder"
1 parent bef5ef8 commit e5758ef

File tree

1 file changed

+3
-3
lines changed
  • modules/project_cleanup/function_source

1 file changed

+3
-3
lines changed

modules/project_cleanup/function_source/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ func invoke(ctx context.Context) {
219219
requestFilter := fmt.Sprintf("parent.type:folder parent.id:%s", localFolderId)
220220
req := cloudResourceManagerService.Projects.List().Filter(requestFilter)
221221
if err := req.Pages(ctx, processProjectsResponsePage(removeProjectWithLiens)); err != nil {
222-
logger.Printf("Fail to get projects for the forlder with id [%s], error [%s]", localFolderId, err.Error())
222+
logger.Printf("Fail to get projects for the folder with id [%s], error [%s]", localFolderId, err.Error())
223223
} else {
224-
logger.Printf("Got and processed all projects for the forlder with id [%s]", localFolderId)
224+
logger.Printf("Got and processed all projects for the folder with id [%s]", localFolderId)
225225
}
226226
}
227227

@@ -234,7 +234,7 @@ func invoke(ctx context.Context) {
234234
removeProjectsInFolder(folderId)
235235
return nil
236236
}); err != nil {
237-
logger.Fatalf("Fail to get subfolders for the forlder with id [%s], error [%s]", folderId, err.Error())
237+
logger.Fatalf("Fail to get subfolders for the folder with id [%s], error [%s]", folderId, err.Error())
238238
}
239239
}
240240

0 commit comments

Comments
 (0)