Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix document symbol links #93

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.9
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
// Copyright © 2024 Apple Inc.

Expand Down
10 changes: 5 additions & 5 deletions Source/MLX/Documentation.docc/Articles/converting-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ Note: some of the symbols are not linkable.
`__iter__` | implements `Sequence`
`__add__` | ``MLXArray/+(_:_:)-1rv98``
`__iadd__` | ``MLXArray/+=(_:_:)-3feg7``
`__sub__` | `-`
`__isub__` | `-=`
`__sub__` | ``MLXArray/-(_:_:)-7frdo``
`__isub__` | ``MLXArray/-=(_:_:)-4d4ei``
`__mul__` | ``MLXArray/*(_:_:)-1z2ck``
`__imul__` | ``MLXArray/*=(_:_:)-9ukv3``
`__truediv__` | `/`
`__div__` | `/`
`__idiv__` | `/=`
`__truediv__` | ``MLXArray//(_:_:)-6ijef``
`__div__` | ``MLXArray//(_:_:)-6ijef``
`__idiv__` | ``MLXArray//=(_:_:)-9egbn``
`__floordiv__` | ``MLXArray/floorDivide(_:stream:)``
`__mod__` | ``MLXArray/%(_:_:)-3ubwd``
`__eq__` | ``MLXArray/.==(_:_:)-56m0a``
Expand Down