@@ -155,7 +155,7 @@ fn compileRaylib(b: *std.Build, target: std.Build.ResolvedTarget, optimize: std.
155155 );
156156 }
157157
158- // Sets a flag indiciating the use of a custom `config.h`
158+ // Sets a flag indicating the use of a custom `config.h`
159159 try raylib_flags_arr .append (b .allocator , "-DEXTERNAL_CONFIG_FLAGS" );
160160 if (options .config .len > 0 ) {
161161 // Splits a space-separated list of config flags into multiple flags
@@ -187,7 +187,7 @@ fn compileRaylib(b: *std.Build, target: std.Build.ResolvedTarget, optimize: std.
187187 try raylib_flags_arr .append (b .allocator , flag );
188188 }
189189 } else {
190- // Set default config if no custome config got set
190+ // Set default config if no custom config got set
191191 try raylib_flags_arr .appendSlice (b .allocator , & config_h_flags );
192192 }
193193
@@ -438,7 +438,7 @@ pub const Options = struct {
438438
439439 pub fn getOptions (b : * std.Build ) Options {
440440 return .{
441- .platform = b .option (PlatformBackend , "platform" , "Choose the platform backedn for desktop target" ) orelse defaults .platform ,
441+ .platform = b .option (PlatformBackend , "platform" , "Choose the platform backend for desktop target" ) orelse defaults .platform ,
442442 .raudio = b .option (bool , "raudio" , "Compile with audio support" ) orelse defaults .raudio ,
443443 .rmodels = b .option (bool , "rmodels" , "Compile with models support" ) orelse defaults .rmodels ,
444444 .rtext = b .option (bool , "rtext" , "Compile with text support" ) orelse defaults .rtext ,
0 commit comments