Skip to content

Commit

Permalink
fix : 오탈자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
bongsh0112 committed Dec 14, 2023
1 parent e6940d1 commit cf4263f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ public void deleteNeighborApplication(NeighborApplication neighborApplication) {
}

public List<Neighbor> queryAllByFromUserIdOrderByOrder(Long fromUserId) {
return neighborRepository.findAllByFromUserIdOOrderByOrder(fromUserId);
return neighborRepository.findAllByFromUserIdOrderByOrder(fromUserId);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ public interface NeighborRepository

List<Neighbor> findAllByFromUserIdAndIsView(Long fromUserId, boolean isView);

List<Neighbor> findAllByFromUserIdOOrderByOrder(Long fromUserId);
List<Neighbor> findAllByFromUserIdOrderByOrder(Long fromUserId);
}

0 comments on commit cf4263f

Please sign in to comment.