Skip to content

Commit ec7b1b2

Browse files
Fix typo (hiarchy -> hierarchy)
The docs for iFolder class mistakenly treats "hierarchy" for "hiarchy". This can make more difficult for users searching for "hiearchy" to find the right docs.
1 parent 7281811 commit ec7b1b2

File tree

1 file changed

+6
-6
lines changed
  • src/sdk/PnP.Core/Model/SharePoint/Core/Public

1 file changed

+6
-6
lines changed

src/sdk/PnP.Core/Model/SharePoint/Core/Public/IFolder.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -288,19 +288,19 @@ public interface IFolder : IDataModel<IFolder>, IDataModelGet<IFolder>, IDataMod
288288

289289
#region EnsureFolder
290290
/// <summary>
291-
/// Ensures a (hiarchy) of folders exists on a given folder
291+
/// Ensures a (hierarchy) of folders exists on a given folder
292292
/// </summary>
293-
/// <param name="folderRelativeUrl">a (hiarchy) of folders (e.g. folderA/folderB/FolderC) </param>
293+
/// <param name="folderRelativeUrl">a (hierarchy) of folders (e.g. folderA/folderB/FolderC) </param>
294294
/// <param name="expressions">Expressions needed to create the request, only used when the folder exists, if the returned folder was newly created the default properties are returned</param>
295-
/// <returns>The <see cref="IFolder"/> representing the final folder in the hiarchy (e.g. FolderC)</returns>
295+
/// <returns>The <see cref="IFolder"/> representing the final folder in the hierarchy (e.g. FolderC)</returns>
296296
public Task<IFolder> EnsureFolderAsync(string folderRelativeUrl, params Expression<Func<IFolder, object>>[] expressions);
297297

298298
/// <summary>
299-
/// Ensures a (hiarchy) of folders exists on a given folder
299+
/// Ensures a (hierarchy) of folders exists on a given folder
300300
/// </summary>
301-
/// <param name="folderRelativeUrl">a (hiarchy) of folders (e.g. folderA/folderB/FolderC) </param>
301+
/// <param name="folderRelativeUrl">a (hierarchy) of folders (e.g. folderA/folderB/FolderC) </param>
302302
/// <param name="expressions">Expressions needed to create the request, only used when the folder exists, if the returned folder was newly created the default properties are returned</param>
303-
/// <returns>The <see cref="IFolder"/> representing the final folder in the hiarchy (e.g. FolderC)</returns>
303+
/// <returns>The <see cref="IFolder"/> representing the final folder in the hierarchy (e.g. FolderC)</returns>
304304
public IFolder EnsureFolder(string folderRelativeUrl, params Expression<Func<IFolder, object>>[] expressions);
305305
#endregion
306306

0 commit comments

Comments
 (0)