Typos fixes

This commit is contained in:
Marcin Krzyzanowski 2019-07-04 17:26:41 +02:00
parent a820459019
commit e28e3f7d5b
No known key found for this signature in database
GPG key ID: 622592CE503A0930

View file

@ -979,14 +979,14 @@ export namespace FailureHandlingKind {
export const Abort: FailureHandlingKind = 'abort';
/**
* All operations are executed transactional. That means they either all
* All operations are executed transactionally. That means they either all
* succeed or no changes at all are applied to the workspace.
*/
export const Transactional: FailureHandlingKind = 'transactional';
/**
* If the workspace edit contains only textual file changes they are executed transactional.
* If the workspace edit contains only textual file changes they are executed transactionally.
* If resource changes (create, rename or delete file) are part of the change the failure
* handling strategy is abort.
*/
@ -994,7 +994,7 @@ export namespace FailureHandlingKind {
/**
* The client tries to undo the operations already executed. But there is no
* guarantee that this is succeeding.
* guarantee that this succeeds.
*/
export const Undo: FailureHandlingKind = 'undo';
}