8000 Fix typo in variable name. (#1346) · ileinone/java-docs-samples@9e67a3d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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

Lines changed: 2 additions & 2 deletions
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)
0