diff --git a/Examples/Core/InputMultitouch.cs b/Examples/Core/InputMultitouch.cs index 1b62f76..266d198 100644 --- a/Examples/Core/InputMultitouch.cs +++ b/Examples/Core/InputMultitouch.cs @@ -38,7 +38,7 @@ public class InputMultitouch { // Update //---------------------------------------------------------------------------------- - // Get the touch point count (h ow many fingers are touching the screen ) + // Get the touch point count (how many fingers are touching the screen ) int tCount = GetTouchPointCount(); // Clamp touch points available (set the maximum touch points allowed ) diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index 9c80ff3..db56c5b 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -1424,7 +1424,7 @@ public static unsafe partial class Raylib [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageAnim(sbyte* fileName, int* frames); - /// Load image from memory buffer, fileType refers to extension: i.e. "png" + /// Load image from memory buffer, fileType refers to extension: i.e. ".png" [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageFromMemory(sbyte* fileType, byte* fileData, int dataSize); @@ -1976,7 +1976,7 @@ public static unsafe partial class Raylib [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontFromImage(Image image, Color key, int firstChar); - /// Load font from memory buffer, fileType refers to extension: i.e. "ttf" + /// Load font from memory buffer, fileType refers to extension: i.e. ".ttf" [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontFromMemory( sbyte* fileType, @@ -2694,7 +2694,7 @@ public static unsafe partial class Raylib [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWave(sbyte* fileName); - /// Load wave from memory buffer, fileType refers to extension: i.e. "wav" + /// Load wave from memory buffer, fileType refers to extension: i.e. ".wav" [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWaveFromMemory(sbyte* fileType, byte* fileData, int dataSize); diff --git a/Raylib-cs/types/Raylib.Utils.cs b/Raylib-cs/types/Raylib.Utils.cs index 3c144b7..eb12e24 100644 --- a/Raylib-cs/types/Raylib.Utils.cs +++ b/Raylib-cs/types/Raylib.Utils.cs @@ -130,7 +130,7 @@ public static unsafe partial class Raylib } /// - /// Load image from managed memory, fileType refers to extension: i.e. "png" + /// Load image from managed memory, fileType refers to extension: i.e. ".png" /// public static Image LoadImageFromMemory(string fileType, byte[] fileData) { @@ -1011,7 +1011,7 @@ public static unsafe partial class Raylib } /// - /// Load font from managed memory, fileType refers to extension: i.e. "ttf" + /// Load font from managed memory, fileType refers to extension: i.e. ".ttf" /// public static Font LoadFontFromMemory( string fileType, @@ -1327,7 +1327,7 @@ public static unsafe partial class Raylib } /// - /// Load wave from managed memory, fileType refers to extension: i.e. "wav" + /// Load wave from managed memory, fileType refers to extension: i.e. ".wav" /// public static Wave LoadWaveFromMemory(string fileType, byte[] fileData) {