summaryrefslogtreecommitdiff
path: root/libobjc
diff options
context:
space:
mode:
authorSandra Loosemore <sandra@codesourcery.com>2019-01-09 16:44:56 -0500
committerSandra Loosemore <sandra@gcc.gnu.org>2019-01-09 16:44:56 -0500
commit155ed511cf8bb7ca99d663c333292d5b6796a2d7 (patch)
treefc58aefeb5d946589ce39d0614ebb28a8e7e1cff /libobjc
parent430002e1d97ca7b02d6c9baa1378bdda4fbf7527 (diff)
PR other/16615 [4/5]
2019-01-09 Sandra Loosemore <sandra@codesourcery.com> PR other/16615 [4/5] gcc/ * config/pa/pa.c: Change "can not" to "cannot". * gimple-ssa-evrp-analyze.c: Likewise. * ipa-icf.c: Likewise. * ipa-polymorphic-call.c: Likewise. * ipa-pure-const.c: Likewise. * lra-constraints.c: Likewise. * lra-remat.c: Likewise. * reload1.c: Likewise. * reorg.c: Likewise. * tree-ssa-uninit.c: Likewise. gcc/ada/ * exp_ch11.adb: Change "can not" to "cannot". * sem_ch4.adb: Likewise. gcc/fortran/ * expr.c: Change "can not" to "cannot". libobjc/ * objc/runtime.h: Change "can not" to "cannot". From-SVN: r267786
Diffstat (limited to 'libobjc')
-rw-r--r--libobjc/ChangeLog6
-rw-r--r--libobjc/objc/runtime.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog
index a85fb5986c7..f2f6ca57e64 100644
--- a/libobjc/ChangeLog
+++ b/libobjc/ChangeLog
@@ -2,6 +2,12 @@
PR other/16615
+ * objc/runtime.h: Change "can not" to "cannot".
+
+2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
+
+ PR other/16615
+
* class.c: Mechanically replace "can not" with "cannot".
* objc/runtime.h: Likewise.
* sendmsg.c: Likewise.
diff --git a/libobjc/objc/runtime.h b/libobjc/objc/runtime.h
index 2ce23ccfd86..dc7d12d248f 100644
--- a/libobjc/objc/runtime.h
+++ b/libobjc/objc/runtime.h
@@ -224,8 +224,8 @@ objc_EXPORT SEL * sel_copyTypedSelectorList (const char *name,
This is useful if you have the name of the selector, and would
really like to get a selector for it that includes the type
encoding. Unfortunately, if the program contains multiple selector
- with the same name but different types, sel_getTypedSelector can
- not possibly know which one you need, and so will return NULL.
+ with the same name but different types, sel_getTypedSelector cannot
+ possibly know which one you need, and so will return NULL.
Compatibility Note: the Apple/NeXT runtime has untyped selectors,
so it does not have this function, which is specific to the GNU