diff options
| author | Paul Eggert | 2016-03-14 08:40:08 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-03-14 08:41:19 -0700 |
| commit | 26b56dc739460bfd35bd12b4aca7434d381d9ef5 (patch) | |
| tree | 1e992aa6e1a351c18b467a5a064e7dbe26a46bb9 /nextstep | |
| parent | 80ec484ac83e6965a843dabf766ade057ee1bc6a (diff) | |
| download | emacs-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/README | 9 |
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 | |||
| 30 | made up of the name of each parameter. An exception to this rule are | 29 | made up of the name of each parameter. An exception to this rule are |
| 31 | methods without parameters. | 30 | methods without parameters. |
| 32 | 31 | ||
| 33 | The following calls a method in the object `anObject'. | 32 | The 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: | |||
| 71 | The NS interface features a printf-based trace package that prints the | 70 | The NS interface features a printf-based trace package that prints the |
| 72 | call tree of selected functions in the Cocoa interface, plus various | 71 | call tree of selected functions in the Cocoa interface, plus various |
| 73 | extra information. It can be enabled by uncommenting the line | 72 | extra information. It can be enabled by uncommenting the line |
| 74 | defining `NSTRACE_ENABLED' in "nsterm.h". To enable more output, | 73 | defining 'NSTRACE_ENABLED' in "nsterm.h". To enable more output, |
| 75 | uncomment the lines defining symbols starting with `NSTRACE_GROUP'. | 74 | uncomment the lines defining symbols starting with 'NSTRACE_GROUP'. |
| 76 | 75 | ||
| 77 | 76 | ||
| 78 | GNUSTEP AND OTHER COMPATIBLE SYSTEMS | 77 | GNUSTEP AND OTHER COMPATIBLE SYSTEMS |