diff --git a/docs/docs/reference/metaprogramming/inline.md b/docs/docs/reference/metaprogramming/inline.md index 01b5b359787e..308097c5e2b1 100644 --- a/docs/docs/reference/metaprogramming/inline.md +++ b/docs/docs/reference/metaprogramming/inline.md @@ -42,7 +42,7 @@ method will always be inlined at the point of call. In the inlined code, an `if-then-else` with a constant condition will be rewritten to its `then`- or `else`-part. Consequently, in the `log` method above the -`if (Config.loggi0ng)` with `Config.logging == true` will get rewritten into its +`if (Config.logging)` with `Config.logging == true` will get rewritten into its `then`-part. Here's an example: