Skip to content

Commit 49c4a12

Browse files
authored
Merge pull request #6732 from propensive/patch-1
Fix typo
2 parents b5a6963 + 688a244 commit 49c4a12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/reference/metaprogramming/inline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ method will always be inlined at the point of call.
4242

4343
In the inlined code, an `if-then-else` with a constant condition will be rewritten
4444
to its `then`- or `else`-part. Consequently, in the `log` method above the
45-
`if (Config.loggi0ng)` with `Config.logging == true` will get rewritten into its
45+
`if (Config.logging)` with `Config.logging == true` will get rewritten into its
4646
`then`-part.
4747

4848
Here's an example:

0 commit comments

Comments
 (0)