pidgin/nest

Fix an unescaped slash and an em-dash

19 months ago, Elliott Sales de Andrade
85c031cefc69
Parents bf1fdaabeb6b
Children 50afdb25d25a
Fix an unescaped slash and an em-dash

Reviewed at https://reviews.imfreedom.org/r/1931/
--- a/hugo/content/development/faq.md Tue Oct 11 07:18:38 2022 -0500
+++ b/hugo/content/development/faq.md Tue Oct 11 07:19:01 2022 -0500
@@ -85,10 +85,10 @@
### Why are `G_DIR_SEPARATOR_S` and `G_DIR_SEPARATOR` used everywhere?
This is a matter of maintaining cross-platform compatibility. Windows uses a
-backslash ("\") for directory separators in paths, while UNIX-like systems use
-the forward slash ("/"). Other OSes may choose to use other separators--for
-example, prior to Mac OS X, it was common for the directory separator on Macs to
-be a colon (":").
+backslash ("\\") for directory separators in paths, while UNIX-like systems use
+the forward slash ("/"). Other OSs may choose to use other separators---for
+example, prior to Mac OS X, it was common for the directory separator on Macs
+to be a colon (":").
It is impractical to use preprocessor directives throughout the code to
determine the path style to use, especially if a new OS were to appear and use a