Skip to content

Commit 6f1a7b2

Browse files
authored
Merge pull request #2596 from microsoftgraph/fix-readme
Fix typo in readme
2 parents 7ec9bc5 + 278ef69 commit 6f1a7b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To get the current user's root folder of their default drive:
5959
```csharp
6060
// Get the user's driveId
6161
var drive = await graphClient.Me.Drive.GetAsync();
62-
var userDriveId = driveItem.Id;
62+
var userDriveId = drive.Id;
6363
// use the driveId to get the root drive
6464
var rootItem = await graphClient.Drives[userDriveId].Root.GetAsync();
6565
```

0 commit comments

Comments
 (0)