Skip to content

Commit 9104931

Browse files
committed
Beautified some comments
1 parent d639a28 commit 9104931

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

Source/Velthuis.BigIntegers.pas

+15-7
Original file line numberDiff line numberDiff line change
@@ -168,25 +168,33 @@ interface
168168

169169
// --- User settings ---
170170

171-
// Setting PUREPASCAL forces the use of plain Object Pascal for all routines, i.e. no assembler is used.
171+
//------------------------------------------------------------------------------------------------------------------//
172+
// Setting PUREPASCAL forces the use of plain Object Pascal for all routines, i.e. no assembler is used. //
173+
//------------------------------------------------------------------------------------------------------------------//
172174

173175
{ $DEFINE PUREPASCAL}
174176

175177

176-
// Setting RESETSIZE forces the Compact routine to shrink the dynamic array when that makes sense.
177-
// This can slow down code a little.
178+
//------------------------------------------------------------------------------------------------------------------//
179+
// Setting RESETSIZE forces the Compact routine to shrink the dynamic array when that makes sense. //
180+
// This can slow down code a little. //
181+
//------------------------------------------------------------------------------------------------------------------//
178182

179183
{ $DEFINE RESETSIZE}
180184

181185

182-
// If set, none of the public methods modifies the instance it is called upon.
183-
// If necessary, a new instance is returned.
186+
//------------------------------------------------------------------------------------------------------------------//
187+
// If set, none of the public methods modifies the instance it is called upon. //
188+
// If necessary, a new instance is returned. //
189+
//------------------------------------------------------------------------------------------------------------------//
184190

185191
{$DEFINE BIGINTEGERIMMUTABLE}
186192

187193

188-
// EXPERIMENTAL is set for code that tries something new without deleting the original code yet.
189-
// Undefine it to get the original code.
194+
//------------------------------------------------------------------------------------------------------------------//
195+
// EXPERIMENTAL is set for code that tries something new without deleting the original code yet. //
196+
// Undefine it to get the original code. //
197+
//------------------------------------------------------------------------------------------------------------------//
190198

191199
{ $DEFINE EXPERIMENTAL}
192200

0 commit comments

Comments
 (0)