Skip to content

Commit

Permalink
Fix some typos. (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Dec 24, 2023
1 parent 08b428c commit 5b75378
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The bindings are based on the WebGPU-native header found at `ffi/webgpu-headers/
- [dvijaha/WGPUNative.jl](https://github.com/dvijaha/WGPUNative.jl) - stable Julia wrapper
- [kgpu/wgpuj](https://github.com/kgpu/kgpu/tree/master/wgpuj) - Java/Kotlin wrapper
- [rajveermalviya/go-webgpu](https://github.com/rajveermalviya/go-webgpu) - Go wrapper
- [WebGPU-C++](https://github.com/eliemichel/WebGPU-Cpp) - Auto-generated C++ wrapper (developped for the [Learn WebGPU native](https://eliemichel.github.io/LearnWebGPU) course)
- [WebGPU-C++](https://github.com/eliemichel/WebGPU-Cpp) - Auto-generated C++ wrapper (developed for the [Learn WebGPU native](https://eliemichel.github.io/LearnWebGPU) course)

## Pre-built binaries

Expand Down
2 changes: 1 addition & 1 deletion examples/framework/framework.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void frmwrk_print_global_report(WGPUGlobalReport report) {
print_hub_report(report.gl, "\tgl.");
break;
default:
printf("[framework] frmwrk_print_global_report: invalid backened type: %d",
printf("[framework] frmwrk_print_global_report: invalid backend type: %d",
report.backendType);
}
printf("}\n");
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project('wgpu-native', 'c', version : '0.0.0', license : 'MIT OR Apache-2.0')
inc_dirs = [include_directories('ffi', is_system: true)]

cargo = find_program('cargo')
#determin which dir contain platform library
#determine which dir contain platform library
if ['linux','android','darwin','cygwin','freebsd','netbsd','openbsd'].contains(host_machine.system())
lib_path='target/release/libwgpu_native.a'
else
Expand Down

0 comments on commit 5b75378

Please sign in to comment.