diff --git a/Claunia.IO/ChangeLog b/Claunia.IO/ChangeLog index 5fd928d..b0996e6 100644 --- a/Claunia.IO/ChangeLog +++ b/Claunia.IO/ChangeLog @@ -1,3 +1,8 @@ +2015-04-26 Natalia Portillo + + * Interop/Apple/Interop.Apple.statfs.cs: + Correct documentation. + 2015-04-26 Natalia Portillo * Interop/Linux/Interop.Linux.uname.cs: diff --git a/Claunia.IO/Interop/Apple/Interop.Apple.statfs.cs b/Claunia.IO/Interop/Apple/Interop.Apple.statfs.cs index 13fe9a5..29c91c7 100644 --- a/Claunia.IO/Interop/Apple/Interop.Apple.statfs.cs +++ b/Claunia.IO/Interop/Apple/Interop.Apple.statfs.cs @@ -221,20 +221,20 @@ internal static partial class Interop } /// - /// Obtains information of the file pointed by . - /// Calls to system's stat(2) + /// Obtains information of the file system mounted at . + /// Calls to system's statfs(2) /// - /// Path to the file. + /// Path to the filesystem mount point. /// on 32 bit systems and on 64 bit systems. /// On success, 0. On failure, -1, and errno is set. [DllImport(Libraries.Libc, SetLastError = true)] public static extern int statfs(string path, out StatFS buf); /// - /// Obtains information of the file pointed by . - /// Calls to system's stat64(2) + /// Obtains information of the file system mounted at . + /// Calls to system's statfs64(2) /// - /// Path to the file. + /// Path to the filesystem mount point. /// . /// On success, 0. On failure, -1, and errno is set. [DllImport(Libraries.Libc, SetLastError = true)]