about summary refs log tree commit diff
path: root/app/lib
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-02-07 20:36:20 -0500
committerGitHub <noreply@github.com>2023-02-08 02:36:20 +0100
commit203739dd3adbfccf96c237bd8f4cf9cefc67ff94 (patch)
treee17324e372fd6cc766b205db58bd2b9ecee22778 /app/lib
parent2e652aa81c22c802e4571e6cfa443319cb862614 (diff)
Apply Rubocop Performance/StringIdentifierArgument (#23444)
Diffstat (limited to 'app/lib')
-rw-r--r--app/lib/scope_transformer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/scope_transformer.rb b/app/lib/scope_transformer.rb
index fdfc6cf13..adcb711f8 100644
--- a/app/lib/scope_transformer.rb
+++ b/app/lib/scope_transformer.rb
@@ -28,7 +28,7 @@ class ScopeTransformer < Parslet::Transform
     def merge!(other_scope)
       raise ArgumentError unless other_scope.namespace == namespace && other_scope.term == term
 
-      @access.concat(other_scope.instance_variable_get('@access'))
+      @access.concat(other_scope.instance_variable_get(:@access))
       @access.uniq!
       @access.sort!