From 7002e062f2495e48abed54fc4ad6ca778d25892c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Roch=C3=A9?= Date: Thu, 7 Mar 2019 10:58:47 +0000 Subject: [PATCH] fix typo in WorkspaceEdit description --- specification.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification.md b/specification.md index a46175d..3c239ff 100644 --- a/specification.md +++ b/specification.md @@ -585,7 +585,7 @@ export interface DeleteFile { #### WorkspaceEdit -A workspace edit represents changes to many resources managed in the workspace. The edit should either provide `changes` or `documentChanges`. If the client can handle versioned document edits and if `documentChange`s are present, the latter are preferred over `changes`. +A workspace edit represents changes to many resources managed in the workspace. The edit should either provide `changes` or `documentChanges`. If the client can handle versioned document edits and if `documentChanges` are present, the latter are preferred over `changes`. ```typescript export interface WorkspaceEdit {