Skip to content

Commit 63c3653

Browse files
committed
Fix some typos in code
1 parent e5733ae commit 63c3653

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,10 @@
195195

196196
function injectJsFiles(callback, ...names) {
197197
let loadedCount = 0;
198-
let radomTime = new Date().getTime();
198+
let randomTime = new Date().getTime();
199199
for (let i = 0; i < names.length; i++) {
200200
let script = document.createElement('script');
201-
script.src = 'resources/js/' + names[i] + '?randomId=' + radomTime;
201+
script.src = 'resources/js/' + names[i] + '?randomId=' + randomTime;
202202
script.onload = () => {
203203
loadedCount++;
204204
if (loadedCount >= names.length) setTimeout(() => { callback(); }, 150);

docs/resources/js/markdown-contents.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ const markdownContents = {
2626
'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n' +
2727
'GNU Affero General Public License for more details.\n\n' +
2828
'You should have received a copy of the GNU Affero General Public License\n' +
29-
'along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;.\n' +
29+
'along with this program. If not, see <http://www.gnu.org/licenses/>.\n' +
3030
'```'
3131
};

0 commit comments

Comments
 (0)