use Save method for initializing file

This commit is contained in:
Ryan Peters 2023-02-07 11:52:44 -05:00
parent c35b0e29cf
commit ed90291b93

View File

@ -11,7 +11,7 @@
// ensure initialized
if (!File.Exists(filePath))
{
File.WriteAllText(filePath, "Hi! Feel free to start typing. Everything will be saved soon after you are done typing.");
Save("Hi! Feel free to start typing. Everything will be saved soon after you are done typing.");
}
}