Skip to content

Commit 9e9d06a

Browse files
committed
Typo fix: appropo -> apropos. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@305738 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent b8c6e47 commit 9e9d06a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/Block-ABI-Apple.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -856,15 +856,15 @@ mentioned above, call:
856856

857857
.. code-block:: c
858858
859-
_Block_object_assign(&dst->target, src->target, BLOCK_FIELD_<appropo>);
859+
_Block_object_assign(&dst->target, src->target, BLOCK_FIELD_<apropos>);
860860
861861
in the copy helper and:
862862

863863
.. code-block:: c
864864
865-
_Block_object_dispose(->target, BLOCK_FIELD_<appropo>);
865+
_Block_object_dispose(->target, BLOCK_FIELD_<apropos>);
866866
867-
in the dispose helper where ``<appropo>`` is:
867+
in the dispose helper where ``<apropos>`` is:
868868

869869
.. code-block:: c
870870
@@ -888,7 +888,7 @@ and functions are generated in the same manner.
888888
Under ObjC we allow ``__weak`` as an attribute on ``__block`` variables, and
889889
this causes the addition of ``BLOCK_FIELD_IS_WEAK`` orred onto the
890890
``BLOCK_FIELD_IS_BYREF`` flag when copying the ``block_byref`` structure in the
891-
``Block`` copy helper, and onto the ``BLOCK_FIELD_<appropo>`` field within the
891+
``Block`` copy helper, and onto the ``BLOCK_FIELD_<apropos>`` field within the
892892
``block_byref`` copy/dispose helper calls.
893893

894894
The prototypes, and summary, of the helper functions are:

0 commit comments

Comments
 (0)