Skip to content

Commit bc2131e

Browse files
Small typo and doc fixup (#325)
1 parent b5233e2 commit bc2131e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

docs/src/api/kernel.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ This section lists the package's public functionality that corresponds to specia
44
functions for use in device code. For more information about these functions,
55
please consult the [Metal Shading Language specification](https://developer.apple.com/metal/Metal-Shading-Language-Specification.pdf).
66

7-
This is made possible by interfacing with the Metal libraries through a small C library that
8-
wraps the ObjectiveC APIs. These low-level wrappers, along with some slightly higher-level
9-
Julia wrappers, are available in the MTL submodule exported by Metal.jl. All wrapped C
10-
functions and types start with the mt prefix, whereas the Julia wrappers are prefixed with Mtl:
7+
This is made possible by interfacing with the Metal libraries by wrapping a subset of the ObjectiveC APIs using [ObjectiveC.jl](https://github.com/JuliaInterop/ObjectiveC.jl). These low-level wrappers are available in the MTL submodule exported by Metal.jl.
118

129

1310
## Indexing and dimensions

src/device/array.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ should match the type of the pointer `ptr`.
2323
MtlDeviceArray
2424

2525
# NOTE: we can't support the typical `tuple or series of integer` style construction,
26-
# because we're Mtlrrently requiring a trailing pointer argument.
26+
# because we're currently requiring a trailing pointer argument.
2727

2828
struct MtlDeviceArray{T,N,A} <: DenseArray{T,N}
2929
ptr::Core.LLVMPtr{T,A}

0 commit comments

Comments
 (0)