Update syntax-method-call-on-string-literals.md

Clean up highlighting
This commit is contained in:
Arseny Kapoulkine 2021-05-17 16:39:39 -07:00 committed by GitHub
parent 0fa58d581c
commit 3f217b3ed6
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ By itself, this change introduces an additional ambiguity because of the combina
Consider code like this:
```
```lua
local foo = bar
("fmt"):format(...)
```
@ -46,7 +46,7 @@ The grammar today also allows calling functions with string literals as their fi
By itself, this proposal thus would create a similar ambiguity in code like this:
```
```lua
local foo = bar
"fmt":format(...)
```
@ -55,7 +55,7 @@ While we could extend the line-based error check to include function literal arg
Doing so would prohibit code like this:
```
```lua
"fmt":format(...)
```