소스 검색

Update README.md

Eric Zhang 12 년 전
부모
커밋
5269cd455f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -12,7 +12,7 @@ Each peer simply provides a identifier with which other peers using the same API
 
 **Peer**
 
-```js
+```html
 <script>
   var peer = new Peer('someid', {key: 'apikey'});
   peer.on('connection', function(conn) {
@@ -26,7 +26,7 @@ Each peer simply provides a identifier with which other peers using the same API
 
 **Connecting peer**
 
-```js
+```html
 <script>
   var peer = new Peer('anotherid', {key: 'apikey'});
   var conn = peer.connect('someid');