Skip to content

Commit 9f0b7de

Browse files
committed
fix: fix a few typos
1 parent 269ec86 commit 9f0b7de

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

subprojects/packagefiles/discord_game_sdk/cpp/meson.build

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if host_machine.system() == 'darwin'
4949
elif host_machine.cpu_family() == 'x86_64'
5050
lib_dir = 'lib' / 'x86_64'
5151
else
52-
error('unsuported architectue for macos: ' + host_machine.cpu_family())
52+
error('unsupported architecture for macos: ' + host_machine.cpu_family())
5353
endif
5454

5555
elif host_machine.system() == 'linux'
@@ -81,11 +81,11 @@ elif host_machine.system() == 'linux'
8181
endif
8282

8383
if linux_distro == 'alpine'
84-
error('unsuported libc for linux: musl')
84+
error('unsupported libc for linux: musl')
8585
endif
8686

8787
else
88-
error('unsuported architectue for linux: ' + host_machine.cpu_family())
88+
error('unsupported architecture for linux: ' + host_machine.cpu_family())
8989
endif
9090
elif host_machine.system() == 'windows'
9191
dynamic_lib = 'discord_game_sdk.dll'
@@ -94,10 +94,10 @@ elif host_machine.system() == 'windows'
9494
elif host_machine.cpu_family() == 'x86_64'
9595
lib_dir = 'lib' / 'x86_64'
9696
else
97-
error('unsuported architectue for windows: ' + host_machine.cpu_family())
97+
error('unsupported architecture for windows: ' + host_machine.cpu_family())
9898
endif
9999
else
100-
error('unsuported system: ' + host_machine.system())
100+
error('unsupported system: ' + host_machine.system())
101101
endif
102102

103103
c = meson.get_compiler('c')

tools/dependencies/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ if build_application
443443
else
444444
# TODO: create a proper installer for macOS : https://mesonbuild.com/Creating-OSX-packages.html
445445
error(
446-
'unsuported system for building the installer: '
446+
'unsupported system for building the installer: '
447447
+ host_machine.system(),
448448
)
449449

0 commit comments

Comments
 (0)