Skip to content

Highlight this word #831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion glossary/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down