Skip to content

Commit 6b4278f

Browse files
committed
Fix copyright char changed in error in commit 80bf294
The copyright character on line 850 was changed, either by VS Code or SourceTree, to some erroneous character in commit 80bf294. This unexpected change was reverted here.
1 parent 42566c7 commit 6b4278f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Src/UREMLDataIO.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
* This Source Code Form is subject to the terms of the Mozilla Public License,
33
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
44
* obtain one at https://mozilla.org/MPL/2.0/
@@ -847,7 +847,7 @@ class function TREMLEntities.CharToMnemonicEntity(const Ch: Char): string;
847847
fEntityMap[1] := TREMLEntity.Create('quot', DOUBLEQUOTE);
848848
fEntityMap[2] := TREMLEntity.Create('gt', '>');
849849
fEntityMap[3] := TREMLEntity.Create('lt', '<');
850-
fEntityMap[4] := TREMLEntity.Create('copy', '');
850+
fEntityMap[4] := TREMLEntity.Create('copy', '©');
851851
end;
852852

853853
class destructor TREMLEntities.Destroy;

0 commit comments

Comments
 (0)