From 347026888f140c40afb5ae9b6700e83645a53c01 Mon Sep 17 00:00:00 2001 From: Yannick Lyn Fatt Date: Sat, 28 Dec 2024 13:14:47 -0500 Subject: [PATCH] Fix a typo and made a slight improvement in a sentence in docs on Files --- docs/v3/msgraph/files.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/v3/msgraph/files.md b/docs/v3/msgraph/files.md index 8d0131a..41e6ef9 100644 --- a/docs/v3/msgraph/files.md +++ b/docs/v3/msgraph/files.md @@ -18,7 +18,7 @@ Get files from a group: MsGraph::files()->getFiles($path = null, $type = "groups/$groupId"); ``` -To work with emails first call **->files()** followed by a method. +To work with files first call **->files()** followed by a method. ```php MsGraph::files(); @@ -86,8 +86,8 @@ MsGraph::files()->rename($name, $id); ## Upload file -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. +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. ```php MsGraph::files()->upload($name, $uploadPath, $path = null); -``` \ No newline at end of file +```