From 6256f62217998bdcd32b046b769d8af1424deba9 Mon Sep 17 00:00:00 2001 From: Jeremy Engel Date: Sat, 14 Feb 2015 09:36:20 -0800 Subject: [PATCH] Change "optinal" to "optional" --- src/atom.coffee | 2 +- src/git-repository.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/atom.coffee b/src/atom.coffee index dcc8e0cfb..723d235e5 100644 --- a/src/atom.coffee +++ b/src/atom.coffee @@ -803,7 +803,7 @@ class Atom extends Model # require completes. # # * `id` The {String} module name or path. - # * `globals` An optinal {Object} to set as globals during require. + # * `globals` An optional {Object} to set as globals during require. requireWithGlobals: (id, globals={}) -> existingGlobals = {} for key, value of globals diff --git a/src/git-repository.coffee b/src/git-repository.coffee index 2ffb4e033..d523b562f 100644 --- a/src/git-repository.coffee +++ b/src/git-repository.coffee @@ -59,7 +59,7 @@ class GitRepository # Public: Creates a new GitRepository instance. # # * `path` The {String} path to the Git repository to open. - # * `options` An optinal {Object} with the following keys: + # * `options` An optional {Object} with the following keys: # * `refreshOnWindowFocus` A {Boolean}, `true` to refresh the index and # statuses when the window is focused. #