@@ -267,7 +267,7 @@ systems].
267267
268268#### drop_extension
269269
270- ` drop_extension(filepath) `
270+ ` drop_extension (filepath) `
271271
272272Remove last extension, and the ` . ` preceding it.
273273
@@ -288,7 +288,7 @@ This function wraps [System.FilePath.dropExtension].
288288
289289#### has_extension
290290
291- ` has_extensions(filepath) `
291+ ` has_extensions (filepath) `
292292
293293Does the given filename have an extension?
294294
@@ -310,7 +310,7 @@ This function wraps [System.FilePath.hasExtension].
310310
311311#### is_absolute
312312
313- ` is_absolute(filepath) `
313+ ` is_absolute (filepath) `
314314
315315Is a path absolute? (same as ` ! is_relative(filepath) ` )
316316
@@ -327,7 +327,7 @@ This function wraps [System.FilePath.isAbsolute].
327327
328328#### is_relative
329329
330- ` ìs_relative(filepath) `
330+ ` ìs_relative (filepath) `
331331
332332Is a path relative, or is it fixed to the root?
333333
@@ -350,7 +350,7 @@ This function wraps [System.FilePath.isRelative].
350350
351351#### join_path
352352
353- ` join_path(filepaths) `
353+ ` join_path (filepaths) `
354354
355355Join path elements back together by the directory separator.
356356
@@ -371,7 +371,7 @@ This function wraps [System.FilePath.joinPath].
371371
372372#### normalise
373373
374- ` normalise(filepath) `
374+ ` normalise (filepath) `
375375
376376Normalise a path. See examples [ here] [ System.FilePath.normalize ] .
377377
@@ -388,7 +388,7 @@ This function wraps [System.FilePath.normalise].
388388
389389#### split_directories
390390
391- ` split_directories(filepath) `
391+ ` split_directories (filepath) `
392392
393393Split a path by the directory separator.
394394
@@ -411,7 +411,7 @@ This function wraps [System.FilePath.splitDirectories].
411411
412412#### take_directory
413413
414- ` take_directory(filepath) `
414+ ` take_directory (filepath) `
415415
416416Get the directory name, move up one level.
417417
@@ -433,7 +433,7 @@ This function wraps [System.FilePath.takeDirectory].
433433
434434#### take_extensions
435435
436- ` take_extensions(filepath) `
436+ ` take_extensions (filepath) `
437437
438438Get all extensions.
439439
@@ -455,7 +455,7 @@ This function wraps [System.FilePath.takeExtensions].
455455
456456#### take_filename
457457
458- ` take_filename(filepath) `
458+ ` take_filename (filepath) `
459459
460460Get the file name.
461461
0 commit comments