Skip to content

Commit

Permalink
fix details
Browse files Browse the repository at this point in the history
Signed-off-by: martinvuyk <martin.vuyklop@gmail.com>
  • Loading branch information
martinvuyk committed Dec 4, 2024
1 parent 8e88d34 commit 5bc5722
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ what we publish.

- The `UnsafePointer.bitcast` overload for `DType` has been removed. Wrap your
`DType` in a `Scalar[my_dtype]` to call the only overload of `bitcast` now.
- Direct access to `List.size` has been removed. Use the public API instead.

### 🛠️ Fixed

Expand Down
2 changes: 1 addition & 1 deletion stdlib/src/utils/index.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ struct IndexList[
res.write(self[i])
# Single element tuples should be printed with a trailing comma.
if size == 1:
res.write(", ")
res.write(",")
# Print a closing `)`.
res.write(")")
return res^
Expand Down

0 comments on commit 5bc5722

Please sign in to comment.