docs(guide/migrate): fix typo in code (& --> &)

This commit is contained in:
Georgios Kalpakas
2016-11-21 14:21:45 +02:00
parent b343e7a560
commit cf3c736b61
+1 -1
View File
@@ -1109,7 +1109,7 @@ After:
```js
var Foo = $resource('/foo/:id');
Foo.get({id: 42, bar: 'baz', toString: 'hmm'});
// URL: /foo/42?bar=baz&toString=hmm
// URL: /foo/42?bar=baz&toString=hmm
// Note that `toString` _is_ included in the query, as expected :)
```