1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

[docs][JITLink] Fix a typo (NFC)

This commit is contained in:
Stefan Gränitz 2021-03-02 14:14:44 +01:00
parent 4d74454f3a
commit e9a5668ec5

View File

@ -568,8 +568,8 @@ Passes
------
JITLink passes are ``std::function<Error(LinkGraph&)>`` instances. They are free
to inspect and modify the given ``LinkGraph`` and are subject to the constraints
of whatever phase they are running in (see :ref:`generic_link_algorithm`). If a
to inspect and modify the given ``LinkGraph`` subject to the constraints of
whatever phase they are running in (see :ref:`generic_link_algorithm`). If a
pass returns ``Error::success()`` then linking continues. If a pass returns
a failure value then linking is stopped and the ``JITLinkContext`` is notified
that the link failed.