Like when doing :FindFirstChild("Part") or :FindFirstChild'Part' .
Is one of them deprecating?
If you're calling a function and passing one table literal or string literal, you can omit the brackets.
foo "bar" foo {"bar"}
is syntactic sugar for
foo("bar") foo({"bar"})
Both function calls are exactly the same, it's subjective and neither option provides a performance increase.