Commit 67d285b
authored
fix(docs): incorrect example
The example given to illustrate the behaviour of logical operators is incorrect.
`var.foo || var.foo.bar` would also produce an error if the operator was short-circuiting. The example should be with `var.foo && var.foo.bar`, that produces an error in terraform, but wouldn't if `||` could short-circuit1 parent c049964 commit 67d285b
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
107 | | - | |
| 107 | + | |
0 commit comments