From 4012df8f5a27dcd3ca1788bf864b638c7f67a3af Mon Sep 17 00:00:00 2001 From: 30secondsofcode <30secondsofcode@gmail.com> Date: Sun, 4 Nov 2018 14:15:20 +0000 Subject: [PATCH] Travis build: 733 [cron] --- snippet_data/snippetList.json | 2 +- snippet_data/snippets.json | 4 ++-- test/testlog | 2 +- vscode_snippets/snippets.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/snippet_data/snippetList.json b/snippet_data/snippetList.json index a0ad11b3a..a4a4124cf 100644 --- a/snippet_data/snippetList.json +++ b/snippet_data/snippetList.json @@ -1426,7 +1426,7 @@ "archived": false }, "meta": { - "hash": "4a8abb281739c1b068d979b8d49038ea063ece4aa570cc8444926ebd30306ff1" + "hash": "047d7aa6776b48b392054fc0addcffa4485904f6281f277426911f3ef475b079" } }, { diff --git a/snippet_data/snippets.json b/snippet_data/snippets.json index 3432256b5..7b6bc4bdc 100644 --- a/snippet_data/snippets.json +++ b/snippet_data/snippets.json @@ -2092,7 +2092,7 @@ "type": "snippet", "attributes": { "fileName": "getColonTimeFromDate.md", - "text": "Returns a string of the form `HH:MM:SS` from a `Date` object.\n\nUse `Date.prototype.toString()` and `String.prototype.slice()` to get the `HH:MM:SS` part of a given `Date` object.", + "text": "Returns a string of the form `HH:MM:SS` from a `Date` object.\n\nUse `Date.prototype.toTimeString()` and `String.prototype.slice()` to get the `HH:MM:SS` part of a given `Date` object.", "codeBlocks": { "es6": "const getColonTimeFromDate = date => date.toTimeString().slice(0, 8);", "es5": "var getColonTimeFromDate = function getColonTimeFromDate(date) {\n return date.toTimeString().slice(0, 8);\n};", @@ -2105,7 +2105,7 @@ }, "meta": { "archived": false, - "hash": "4a8abb281739c1b068d979b8d49038ea063ece4aa570cc8444926ebd30306ff1" + "hash": "047d7aa6776b48b392054fc0addcffa4485904f6281f277426911f3ef475b079" } }, { diff --git a/test/testlog b/test/testlog index fc8967278..18dc342f3 100644 --- a/test/testlog +++ b/test/testlog @@ -2267,7 +2267,7 @@ ok 1180 — hz is a Function # Test Suites: 100% ██████████, 360 passed, 360 total # Tests: 100% ██████████, 1180 passed, 1180 total -# Time: 29.388s +# Time: 30.314s # Ran all test suites. diff --git a/vscode_snippets/snippets.json b/vscode_snippets/snippets.json index c4dae15c5..b2eee7bfa 100644 --- a/vscode_snippets/snippets.json +++ b/vscode_snippets/snippets.json @@ -951,7 +951,7 @@ "body": [ "const getColonTimeFromDate = date => date.toTimeString().slice(0, 8);" ], - "description": "Returns a string of the form `HH:MM:SS` from a `Date` object.\n\nUse `Date.prototype.toString()` and `String.prototype.slice()` to get the `HH:MM:SS` part of a given `Date` object" + "description": "Returns a string of the form `HH:MM:SS` from a `Date` object.\n\nUse `Date.prototype.toTimeString()` and `String.prototype.slice()` to get the `HH:MM:SS` part of a given `Date` object" }, "getDaysDiffBetweenDates": { "prefix": "30s_getDaysDiffBetweenDates",