Switch all documentation links to match CoffeeScript literal notation

Foo::bar for instance methods
Foo.bar for class methods
This commit is contained in:
Nathan Sobo
2014-02-19 17:23:47 -07:00
parent 545b375bb5
commit 53fb36d0e2
10 changed files with 44 additions and 44 deletions

View File

@@ -56,7 +56,7 @@ class Selection
# Public: Modifies the screen range for the selection.
#
# screenRange - The new {Range} to use.
# options - A hash of options matching those found in {.setBufferRange}.
# options - A hash of options matching those found in {::setBufferRange}.
setScreenRange: (screenRange, options) ->
@setBufferRange(@editor.bufferRangeForScreenRange(screenRange), options)
@@ -338,7 +338,7 @@ class Selection
#
# options - A {Object} with the keys:
# :autoIndent - If `true`, the indentation is performed appropriately.
# Otherwise, {Editor.getTabText} is used.
# Otherwise, {Editor::getTabText} is used.
indent: ({ autoIndent }={})->
{ row, column } = @cursor.getBufferPosition()
@@ -543,7 +543,7 @@ class Selection
# the given selection.
#
# otherSelection - A {Selection} to merge with.
# options - A hash of options matching those found in {.setBufferRange}.
# options - A hash of options matching those found in {::setBufferRange}.
merge: (otherSelection, options) ->
myGoalBufferRange = @getGoalBufferRange()
otherGoalBufferRange = otherSelection.getGoalBufferRange()
@@ -557,7 +557,7 @@ class Selection
# Public: Compare this selection's buffer range to another selection's buffer
# range.
#
# See {Range.compare} for more details.
# See {Range::compare} for more details.
#
# otherSelection - A {Selection} to compare against.
compare: (otherSelection) ->