how-to's fixed slashes in code comments

This commit is contained in:
Nikolay Iliev
2016-05-09 18:02:05 +03:00
parent de748d4a98
commit ee2eee3d7e
25 changed files with 197 additions and 199 deletions

View File

@@ -26,7 +26,7 @@ export function test_DummyTestForSnippetOnly1() {
neutralButtonText: "Cancel"
};
dialogs.confirm(options).then((result: boolean) => {
//// result can be true/false/undefined
// result can be true/false/undefined
console.log(result);
});
// << dialog-confirm
@@ -54,7 +54,7 @@ export function test_DummyTestForSnippetOnly3() {
password: ""
};
dialogs.login(options).then((loginResult: dialogs.LoginResult) => {
//// true or false.
// true or false.
console.log(loginResult.result);
});
// << dialog-login