Skip to content

Commit 3470268

Browse files
authored
Fix a typo and made a slight improvement in a sentence in docs on Files
1 parent bc4e26a commit 3470268

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/v3/msgraph/files.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Get files from a group:
1818
MsGraph::files()->getFiles($path = null, $type = "groups/$groupId");
1919
```
2020

21-
To work with emails first call **->files()** followed by a method.
21+
To work with files first call **->files()** followed by a method.
2222

2323
```php
2424
MsGraph::files();
@@ -86,8 +86,8 @@ MsGraph::files()->rename($name, $id);
8686

8787
## Upload file
8888

89-
passes the name and the uploadPath (where the file is on your server) and the path to where the file will be stored if no path is provided the root is used.
89+
Pass the name and the uploadPath (where the file is on your server) and the path to where the file will be stored. If no path is provided the root is used.
9090

9191
```php
9292
MsGraph::files()->upload($name, $uploadPath, $path = null);
93-
```
93+
```

0 commit comments

Comments
 (0)