Skip to content

Commit

Permalink
Drop www in atom.io links
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Feb 25, 2014
1 parent 4eabb5b commit de695e3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Atom](http://i.imgur.com/OrTvUAD.png)

Check out our [guides and API documentation](https://www.atom.io/docs/latest/).
Check out our [guides and API documentation](https://atom.io/docs/latest).

## Installing

Expand Down
2 changes: 1 addition & 1 deletion build/tasks/publish-packages.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ request = require 'request'
module.exports = (grunt) ->
{spawn} = require('./task-helpers')(grunt)

baseUrl = "https://www.atom.io/api/packages"
baseUrl = "https://atom.io/api/packages"

packageExists = (packageName, token, callback) ->
requestSettings =
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ Atom ships with node 0.11.10 and the comprehensive node API docs are available
[SelectListView]: ../classes/SelectListView.html
[View]: ../classes/View.html
[WorkspaceView]: ../classes/WorkspaceView.html
[creating-a-package]: https://www.atom.io/docs/latest/creating-a-package
[creating-a-package]: https://atom.io/docs/latest/creating-a-package
[node-docs]: http://nodejs.org/docs/v0.11.10/api
2 changes: 1 addition & 1 deletion src/browser/atom-application.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class AtomApplication
@on 'application:zoom', -> Menu.sendActionToFirstResponder('zoom:')
@on 'application:bring-all-windows-to-front', -> Menu.sendActionToFirstResponder('arrangeInFront:')
@on 'application:inspect', ({x,y}) -> @focusedWindow().browserWindow.inspectElement(x, y)
@on 'application:open-documentation', -> shell.openExternal('https://www.atom.io/docs/latest/?app')
@on 'application:open-documentation', -> shell.openExternal('https://atom.io/docs/latest/?app')
@on 'application:install-update', -> autoUpdater.quitAndInstall()
@on 'application:check-for-update', => @checkForUpdate()

Expand Down

0 comments on commit de695e3

Please sign in to comment.