summaryrefslogtreecommitdiff
path: root/FL/Fl_String.H
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-08-26 15:17:28 +0200
committerMatthias Melcher <github@matthiasm.com>2023-08-26 15:17:28 +0200
commit94a75b012f3557687574df6533296c1a4ef51b3e (patch)
tree5e2db2271774bda929f2d66739974fa8fbffe0cb /FL/Fl_String.H
parentd9d474c59372a8b2b0829c400b5d0584129e3822 (diff)
Fixes a bunch of typos in comments.
Diffstat (limited to 'FL/Fl_String.H')
-rw-r--r--FL/Fl_String.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_String.H b/FL/Fl_String.H
index f3ae71b1b..e0280f43c 100644
--- a/FL/Fl_String.H
+++ b/FL/Fl_String.H
@@ -1,7 +1,7 @@
//
// Basic Fl_String header for the Fast Light Tool Kit (FLTK).
//
-// Copyright 2021-2022 by Bill Spitzak and others.
+// Copyright 2021-2023 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -34,7 +34,7 @@
a drop-in if we ever decide to allow templates and the std library.
Fl_String always maintains a trailing \e nul byte, but can also contain
- \e nul bytes insde the string if the constructor
+ \e nul bytes inside the string if the constructor
Fl_String(const char *str, int size) is used.
Assignment and copy constructors \b copy the string value such that the
@@ -55,7 +55,7 @@ class FL_EXPORT Fl_String {
private:
/*
- FLTK does no small string optimisation.
+ FLTK does no small string optimization.
If the string is empty and capacity is not set, buffer_ will be NULL.
*/
char *buffer_;