docs: fix spelling error in updates tutorial (#25725)

This commit is contained in:
Cody 2020-10-04 22:59:24 -07:00 committed by GitHub
parent 508b8d902b
commit 77e2e47504
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,7 +132,7 @@ autoUpdater.on('error', message => {
})
```
## Handing Updates Manually
## Handling Updates Manually
Because the requests made by Auto Update aren't under your direct control, you may find situations that are difficult to handle (such as if the update server is behind authentication). The `url` field does support files, which means that with some effort, you can sidestep the server-communication aspect of the process. [Here's an example of how this could work](https://github.com/electron/electron/issues/5020#issuecomment-477636990).