@@ -89,7 +89,7 @@ julia> ex3 = Meta.parse("(4 + 4) / 2")
8989:((4 + 4) / 2)
9090```
9191
92- Another way to view expressions is with Meta.show_sexpr, which displays the [ S-expression] ( https://en.wikipedia.org/wiki/S-expression )
92+ Another way to view expressions is with ` Meta.show_sexpr ` , which displays the [ S-expression] ( https://en.wikipedia.org/wiki/S-expression )
9393form of a given ` Expr ` , which may look very familiar to users of Lisp. Here's an example illustrating
9494the display on a nested ` Expr ` :
9595
@@ -1070,7 +1070,7 @@ syntax tree.
10701070
10711071## Generated functions
10721072
1073- A very special macro is ` @generated ` , which allows you to define so-called * generated functions* .
1073+ A very special macro is [ ` @generated ` ] ( @ref ) , which allows you to define so-called * generated functions* .
10741074These have the capability to generate specialized code depending on the types of their arguments
10751075with more flexibility and/or less code than what can be achieved with multiple dispatch. While
10761076macros work with expressions at parse time and cannot access the types of their inputs, a generated
@@ -1269,7 +1269,7 @@ run during inference, it must respect all of the limitations of that code.
12691269Some operations that should not be attempted include:
12701270
127112711 . Caching of native pointers.
1272- 2 . Interacting with the contents or methods of Core.Compiler in any way.
1272+ 2 . Interacting with the contents or methods of ` Core.Compiler ` in any way.
127312733 . Observing any mutable state.
12741274
12751275 * Inference on the generated function may be run at * any* time, including while your code is attempting
0 commit comments