Skip to content

Commit

Permalink
Fix a misconception.
Browse files Browse the repository at this point in the history
  • Loading branch information
DEntisT committed Jul 29, 2023
1 parent dd96bc2 commit a34d50f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
## Example

- Assigning a `TestObj` tag to a variable.
- Assigning a `MyTag` tag to a variable.

```cpp
tag,TestObj;
TestObj<-new.int,testvar=10;
tag,MyTag;
MyTag<-new.int,testvar=10;
```

## Example `#2`
Expand All @@ -20,8 +20,8 @@ TestObj<-new.int,testvar=10;
```cpp
namespace,ObjectTest;
<;
tag,TestObj;
tag,MyTag;
>;

ObjectTest::TestObj<-new.int,testvar=1;
ObjectTest::MyTag<-new.int,testvar=1;
```

0 comments on commit a34d50f

Please sign in to comment.