Skip to content

Commit db6a2cb

Browse files
markdown improvements
1 parent c338706 commit db6a2cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lexicalscoping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ crazy <- function() { # create a new environment with a local variable `x` an
130130
42
131131
```
132132

133-
The curly braces (brackets) are intended to highlight the fact in R the smallest unit of lexical scoping is the function. Unlike some programming languages such as C that allow block-level variable scope, R treats a block enclosed in brackets as part of the nearest function.
133+
*The curly braces (brackets) are intended to highlight the fact in R the smallest unit of lexical scoping is the function.* Unlike some programming languages such as C that allow block-level variable scope, R treats a block enclosed in brackets as part of the nearest function.
134134

135135
```R
136136
x <- 3.14

0 commit comments

Comments
 (0)