Skip to content

Commit

Permalink
Incorrect package scope
Browse files Browse the repository at this point in the history
  • Loading branch information
robmadole committed May 3, 2018
1 parent e1458ba commit 0c218a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ What does that mean?
~~Old way:~~

```javascript
import fontawesome from '@fontawesome/fontawesome'
import fontawesome from '@fortawesome/fontawesome'
import solid from '@fortawesome/fontawesome-free-solid'
import faTwitter from '@fortawesome/fontawesome-free-brands/faTwitter'
import FontAwesomeIcon from '@fortawesome/vue-fontawesome'
Expand All @@ -72,7 +72,7 @@ library.add(solid, faTwitter)
New way:

```javascript
import { library, dom } from '@fontawesome/fontawesome-svg-core'
import { library, dom } from '@fortawesome/fontawesome-svg-core'
import { fas } from '@fortawesome/free-solid-svg-icons'
import { faTwitter } from '@fortawesome/free-brands-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
Expand Down

0 comments on commit 0c218a3

Please sign in to comment.