aboutsummaryrefslogtreecommitdiffstats
path: root/nextstep
diff options
context:
space:
mode:
authorPaul Eggert2016-03-14 08:40:08 -0700
committerPaul Eggert2016-03-14 08:41:19 -0700
commit26b56dc739460bfd35bd12b4aca7434d381d9ef5 (patch)
tree1e992aa6e1a351c18b467a5a064e7dbe26a46bb9 /nextstep
parent80ec484ac83e6965a843dabf766ade057ee1bc6a (diff)
downloademacs-26b56dc739460bfd35bd12b4aca7434d381d9ef5.tar.gz
emacs-26b56dc739460bfd35bd12b4aca7434d381d9ef5.zip
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 @@
1
2 NS -- the Cocoa interface for OS X and compatible systems 1 NS -- the Cocoa interface for OS X and compatible systems
3 --------------------------------------------------------- 2 ---------------------------------------------------------
4 3
@@ -30,7 +29,7 @@ fact that it doesn't have a normal name. Instead, the method name is
30made up of the name of each parameter. An exception to this rule are 29made up of the name of each parameter. An exception to this rule are
31methods without parameters. 30methods without parameters.
32 31
33The following calls a method in the object `anObject'. 32The following calls a method in the object 'anObject'.
34 33
35 [anObject alpha:1 beta:2 gamma:3]; 34 [anObject alpha:1 beta:2 gamma:3];
36 35
@@ -57,7 +56,7 @@ Classes are declared like the following:
57 and avoid language constructs that makes the code hard to maintain. 56 and avoid language constructs that makes the code hard to maintain.
58 57
59* Don't use macros and types intended for the XCode Interface Builder, 58* Don't use macros and types intended for the XCode Interface Builder,
60 like `IBAction'. 59 like 'IBAction'.
61 60
62* The NS interface should work on all version of OS X from 10.6.8 61* The NS interface should work on all version of OS X from 10.6.8
63 (Snow Leopard) to the latest official release. 62 (Snow Leopard) to the latest official release.
@@ -71,8 +70,8 @@ Classes are declared like the following:
71The NS interface features a printf-based trace package that prints the 70The NS interface features a printf-based trace package that prints the
72call tree of selected functions in the Cocoa interface, plus various 71call tree of selected functions in the Cocoa interface, plus various
73extra information. It can be enabled by uncommenting the line 72extra information. It can be enabled by uncommenting the line
74defining `NSTRACE_ENABLED' in "nsterm.h". To enable more output, 73defining 'NSTRACE_ENABLED' in "nsterm.h". To enable more output,
75uncomment the lines defining symbols starting with `NSTRACE_GROUP'. 74uncomment the lines defining symbols starting with 'NSTRACE_GROUP'.
76 75
77 76
78 GNUSTEP AND OTHER COMPATIBLE SYSTEMS 77 GNUSTEP AND OTHER COMPATIBLE SYSTEMS