Skip to content

Commit fe9fc74

Browse files
committed
adjust indents in README.md code sample
1 parent 87389b5 commit fe9fc74

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,17 @@ To retrieve the user's drive:
7575

7676
```java
7777
graphClient
78-
.me()
79-
.drive()
80-
.buildRequest()
81-
.get(new ICallback<Drive>() {
82-
@Override
83-
public void success(final Drive result) {
84-
System.out.println("Found Drive " + result.id);
85-
}
86-
...
87-
// Handle failure case
88-
});
78+
.me()
79+
.drive()
80+
.buildRequest()
81+
.get(new ICallback<Drive>() {
82+
@Override
83+
public void success(final Drive result) {
84+
System.out.println("Found Drive " + result.id);
85+
}
86+
...
87+
// Handle failure case
88+
});
8989
```
9090

9191
For a general overview of how the SDK is designed, see [overview](docs/overview.md).

0 commit comments

Comments
 (0)