From ac5c9a88281dec02393b056482c848b3c82ca973 Mon Sep 17 00:00:00 2001 From: Scott Robertson Date: Tue, 2 Feb 2021 23:11:46 +0000 Subject: [PATCH] Fixing `source` typo (#27583) --- docs/tutorial/dark-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/dark-mode.md b/docs/tutorial/dark-mode.md index fee69d5896a7..2bbda10435c7 100644 --- a/docs/tutorial/dark-mode.md +++ b/docs/tutorial/dark-mode.md @@ -154,7 +154,7 @@ function createWindow () { }) ipcMain.handle('dark-mode:system', () => { - nativeTheme.themeSouce = 'system' + nativeTheme.themeSource = 'system' }) }