Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Update package-modifying-text.md #722

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/hacking-atom/sections/package-modifying-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Now we need to convert the selected text to ASCII art. To do this we will use th

```json
"dependencies": {
"figlet": "1.0.8"
"figlet": "1.5.2"
}
```

Expand All @@ -132,7 +132,7 @@ convert () {
const selection = editor.getSelectedText()

const figlet = require('figlet')
const font = 'o8'
const font = 'O8'
figlet(selection, {font}, function (error, art) {
if (error) {
console.error(error)
Expand Down