Skip to content

Commit

Permalink
AP-5097: Update replacement to use unicode apostrophe
Browse files Browse the repository at this point in the history
  • Loading branch information
colinbruce committed Aug 5, 2024
1 parent 5942a02 commit 4410255
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/services/ccms/requestors/base_requestor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class BaseRequestor
}.freeze

SPECIAL_CHARACTER_REPLACEMENTS = {
"‘" => "'", # opening curly quote
"’" => "'", # closing curly quote
"‘" => "\u0027", # opening curly quote
"’" => "\u0027", # closing curly quote
}.freeze

attr_reader :namespaces
Expand Down

0 comments on commit 4410255

Please sign in to comment.