Skip to content
Snippets Groups Projects
Commit fe343c74 authored by Stian Lyng's avatar Stian Lyng
Browse files

fix typo

parent 201c9803
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ import ntnu.idatt2016.v233.SmartMat.model.ShoppingList;
* @version 1.0
*
*/
public interface ShoppingListReposity {
public interface ShoppingListRepository {
/**
* Saves a shopping list to the database
......
......@@ -4,7 +4,7 @@ import java.util.List;
import java.util.Optional;
import ntnu.idatt2016.v233.SmartMat.model.ShoppingList;
import ntnu.idatt2016.v233.SmartMat.repository.ShoppingListReposity;
import ntnu.idatt2016.v233.SmartMat.repository.ShoppingListRepository;
/**
* Service for the shopping list
......@@ -14,13 +14,13 @@ import ntnu.idatt2016.v233.SmartMat.repository.ShoppingListReposity;
*/
public class ShoppingListService {
ShoppingListReposity shoppingListRepository;
ShoppingListRepository shoppingListRepository;
/**
* Creates a new ShoppingListService
*
* @param shoppingListRepository The repository to use
*/
public ShoppingListService(ShoppingListReposity shoppingListRepository) {
public ShoppingListService(ShoppingListRepository shoppingListRepository) {
this.shoppingListRepository = shoppingListRepository;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment