Skip to content
Snippets Groups Projects

Forkify fixes

Merged Xavier Routh requested to merge forkify-fixes into main
1 unresolved thread
2 files
+ 2
1
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -1857,7 +1857,7 @@ pub fn indices_may_overlap(indices1: &[Index], indices2: &[Index]) -> bool {
* list of indices B.
*/
pub fn indices_contain_other_indices(indices_a: &[Index], indices_b: &[Index]) -> bool {
if indices_a.len() < indices_b.len() {
if indices_a.len() > indices_b.len() {
return false;
}
Loading