Skip to content

Commit

Permalink
Fix Carbon example typo in function declaration (#2365)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Mar 2, 2023
1 parent 899417e commit 12a4d51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/examplefiles/carbon/example.carbon
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn Partition[T: !Comparable & Movable](s : Slice(T)) -> i64 {
return i;
}

fb QuickSort[T: !Comparable & Movable](s : Slice(T)) {
fn QuickSort[T: !Comparable & Movable](s : Slice(T)) {
if (s.Size() <= 1) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/examplefiles/carbon/example.carbon.output

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 12a4d51

Please sign in to comment.