Je démarre sur angular js et je bloque sur un probleme

Voici mon code

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html ng-app='telApp'>
<head>
</head>
<body>
<div ng-controller='telephoneController'>
Filtre par marque :
</br>
<input type="text" ng-model="maMarque"/>
<ul>
<li ng-repeat="monTel in telephones"> {{monTel.marque}}</li>
</ul>
</div>
<script type="text/javascript" src= "JS/angular.min.js"></script>
 
 
<script>
        var telApp = angular.module('telApp',[]);
        telApp.controller{'telephoneController', function($scope){
                                        $scope.telephones=[
                                                                                        {marque: 'Samsung S2',prix: 370},
                                                                                        {marque:'IPhone',prix: 550},
                                                                                        {marque:'NOKIA' ,prix: 250}
                                                                                ];
 
}}; 
</script>
</body>
</html>

mais ça ne marche pas