1
0
Fork 0

Fix workspace/xglob method naming

pull/136/head
Felix Becker 2016-11-06 15:19:19 +01:00
parent 35a296b7f3
commit 381fd4d594
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class Workspace
*/
public function xglob(string $pattern): Promise
{
return $this->handler->request('workspace/_glob', ['pattern' => $pattern])->then(function ($textDocuments) {
return $this->handler->request('workspace/xglob', ['pattern' => $pattern])->then(function ($textDocuments) {
return $this->mapper->mapArray($textDocuments, [], TextDocumentIdentifier::class);
});
}