Skip to content

Commit

Permalink
calling convention
Browse files Browse the repository at this point in the history
  • Loading branch information
jialunzhang-psu committed Jan 17, 2025
1 parent 9cbac29 commit 6f97ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion immut/array/array.mbt
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub fn push[A](self : T[A], value : A) -> T[A] {

///|
/// Given two trees, concatenate them into a new tree.
pub fn T::concat[A](self : T[A], other : T[A]) -> T[A] {
pub fn concat[A](self : T[A], other : T[A]) -> T[A] {
if self.is_empty() {
return other
}
Expand Down

0 comments on commit 6f97ff7

Please sign in to comment.