fix typos (the the)

This commit is contained in:
Martin Aeschlimann 2018-08-13 20:52:50 +02:00 committed by GitHub
parent 9d64e8cb88
commit 08dfb70fdc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3172,14 +3172,14 @@ export class DocumentSymbol {
/**
* The range enclosing this symbol not including leading/trailing whitespace but everything else
* like comments. This information is typically used to determine if the the clients cursor is
* like comments. This information is typically used to determine if the clients cursor is
* inside the symbol to reveal in the symbol in the UI.
*/
range: Range;
/**
* The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.
* Must be contained by the the `range`.
* Must be contained by the `range`.
*/
selectionRange: Range;