[NFC] Fix a typo in InternalsManual: ActOnCXX -> ActOnXXX (#105207)

This part of the manual describes uses of `ActOnXXX` and `BuildXXX`.
This commit is contained in:
Michael Park 2024-08-20 13:00:51 -07:00 committed by GitHub
parent d03dcf6e8c
commit 660de533a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3200,7 +3200,7 @@ are similar.
always involve two functions: an ``ActOnXXX`` function that will be called
directly from the parser, and a ``BuildXXX`` function that performs the
actual semantic analysis and will (eventually!) build the AST node. It's
fairly common for the ``ActOnCXX`` function to do very little (often just
fairly common for the ``ActOnXXX`` function to do very little (often just
some minor translation from the parser's representation to ``Sema``'s
representation of the same thing), but the separation is still important:
C++ template instantiation, for example, should always call the ``BuildXXX``