diff options
| author | Maxime Coste <mawww@kakoune.org> | 2019-03-19 21:44:30 +1100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2019-03-19 21:44:30 +1100 |
| commit | c2be661785418be87e06d366979bdcd8ff3cf0b2 (patch) | |
| tree | b69fc027dc1db7c9007e14e6bdd81cad83c8076a | |
| parent | f87e844244d5ee81e9c1ceb04c354726002ae760 (diff) | |
Fix typo in scratch buffer default content
| -rw-r--r-- | src/buffer_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer_manager.cc b/src/buffer_manager.cc index f0d68206..d4e88b6c 100644 --- a/src/buffer_manager.cc +++ b/src/buffer_manager.cc @@ -83,8 +83,8 @@ Buffer& BufferManager::get_first_buffer() { if (all_of(m_buffers, [](auto& b) { return (b->flags() & Buffer::Flags::Debug); })) create_buffer("*scratch*", Buffer::Flags::None, - "*** this is a *scratch* buffer which wont be automatically saved ***\n" - "*** use it for notes or open a file buffer with the edit command ***\n"); + "*** this is a *scratch* buffer which won't be automatically saved ***\n" + "*** use it for notes or open a file buffer with the :edit command ***\n"); return *m_buffers.back(); } |
