Skip to content

Commit 9e67a3d

Browse files
seanosterbergkurtisvg
authored andcommitted
Fix typo in variable name. (GoogleCloudPlatform#1346)
1 parent c1050fa commit 9e67a3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

iam/api-client/src/main/java/com/google/iam/snippets/Quickstart.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public static void main(String[] args) throws Exception {
4545
.build();
4646

4747
// Call the Cloud IAM Roles API
48-
ListRolesResponse respose = service.roles().list().execute();
49-
List<Role> roles = respose.getRoles();
48+
ListRolesResponse response = service.roles().list().execute();
49+
List<Role> roles = response.getRoles();
5050

5151
// Process the response
5252
for (Role role : roles) {

0 commit comments

Comments
 (0)