Fix typos in comments and assertion messages

Closes https://github.com/wxWidgets/wxWidgets/pull/1596
This commit is contained in:
Olly Betts
2019-10-09 07:43:52 +13:00
committed by Vadim Zeitlin
parent 60bb1a356d
commit e2b4cd9f77
8 changed files with 12 additions and 12 deletions

View File

@@ -264,7 +264,7 @@ public:
static wxMemStruct * GetHead () { return m_head; }
static wxMemStruct * GetTail () { return m_tail; }
// Set the list sentinals.
// Set the list sentinels.
static wxMemStruct * SetHead (wxMemStruct * st) { return (m_head = st); }
static wxMemStruct * SetTail (wxMemStruct * st) { return (m_tail = st); }