Skip to content

Commit d21dacf

Browse files
committed
Unquote the replacement documentation on ObsoleteAnnotation
1 parent 8c2fae8 commit d21dacf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rubberduck.Parsing/Annotations/Concrete/ObsoleteAnnotation.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System.Collections.Generic;
22
using System.Linq;
3+
using Rubberduck.Common;
34

45
namespace Rubberduck.Parsing.Annotations
56
{
@@ -19,7 +20,7 @@ public override IReadOnlyList<string> ProcessAnnotationArguments(IEnumerable<str
1920
var args = arguments.ToList();
2021

2122
ReplacementDocumentation = args.Any()
22-
? args[0]
23+
? args[0].UnQuote()
2324
: string.Empty;
2425

2526
return base.ProcessAnnotationArguments(args);

0 commit comments

Comments
 (0)