diff --git a/glossary/index.md b/glossary/index.md index e9cadca768..3b5c1f68bb 100644 --- a/glossary/index.md +++ b/glossary/index.md @@ -33,7 +33,7 @@ When a function is invoked, an argument is passed for each parameter of that fun You can assign an object to a variable. Afterwards, the variable will refer to the object. * #### auxiliary constructor -Extra constructors defined inside the curly braces of the class definition, which look like method definitions named this, but with no result type. +Extra constructors defined inside the curly braces of the class definition, which look like method definitions named `this`, but with no result type. * #### block One or more expressions and declarations surrounded by curly braces. When the block evaluates, all of its expressions and declarations are processed in order, and then the block returns the value of the last expression as its own value. Blocks are commonly used as the bodies of functions, [for expressions](#for-expression), `while` loops, and any other place where you want to group a number of statements together. More formally, a block is an encapsulation construct for which you can only see side effects and a result value. The curly braces in which you define a class or object do not, therefore, form a block, because fields and methods (which are defined inside those curly braces) are visible from the out- side. Such curly braces form a template.