summaryrefslogtreecommitdiff
path: root/nextstep
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-03-14 08:40:08 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-03-14 08:41:19 -0700
commit26b56dc739460bfd35bd12b4aca7434d381d9ef5 (patch)
tree1e992aa6e1a351c18b467a5a064e7dbe26a46bb9 /nextstep
parent80ec484ac83e6965a843dabf766ade057ee1bc6a (diff)
downloademacs-26b56dc739460bfd35bd12b4aca7434d381d9ef5.tar.gz
Fix some single quotes in documentation
* doc/emacs/anti.texi (Antinews): Avoid confusion in info and PDF when documenting quoting styles. * etc/NEWS, nextstep/README: In these plain text files, quote 'like this' consistently, rather than also (sometimes) ‘like this’ or (more often) `like this'.
Diffstat (limited to 'nextstep')
-rw-r--r--nextstep/README9
1 files changed, 4 insertions, 5 deletions
diff --git a/nextstep/README b/nextstep/README
index 026a048e9d4..fe87802e282 100644
--- a/nextstep/README
+++ b/nextstep/README
@@ -1,4 +1,3 @@
-
NS -- the Cocoa interface for OS X and compatible systems
---------------------------------------------------------
@@ -30,7 +29,7 @@ fact that it doesn't have a normal name. Instead, the method name is
made up of the name of each parameter. An exception to this rule are
methods without parameters.
-The following calls a method in the object `anObject'.
+The following calls a method in the object 'anObject'.
[anObject alpha:1 beta:2 gamma:3];
@@ -57,7 +56,7 @@ Classes are declared like the following:
and avoid language constructs that makes the code hard to maintain.
* Don't use macros and types intended for the XCode Interface Builder,
- like `IBAction'.
+ like 'IBAction'.
* The NS interface should work on all version of OS X from 10.6.8
(Snow Leopard) to the latest official release.
@@ -71,8 +70,8 @@ Classes are declared like the following:
The NS interface features a printf-based trace package that prints the
call tree of selected functions in the Cocoa interface, plus various
extra information. It can be enabled by uncommenting the line
-defining `NSTRACE_ENABLED' in "nsterm.h". To enable more output,
-uncomment the lines defining symbols starting with `NSTRACE_GROUP'.
+defining 'NSTRACE_ENABLED' in "nsterm.h". To enable more output,
+uncomment the lines defining symbols starting with 'NSTRACE_GROUP'.
GNUSTEP AND OTHER COMPATIBLE SYSTEMS