Skip to content

Commit d52d2de

Browse files
committed
RecordLike => Record
1 parent 0dedcf2 commit d52d2de

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

rb.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@
148148
<path>meta-data/bindable.md</path>
149149
</section>
150150
<section>
151-
<title>RecordLike</title>
152-
<path>meta-data/recordlike.md</path>
151+
<title>Record</title>
152+
<path>meta-data/record.md</path>
153153
</section>
154154
</sections>
155155
</section>

src/as3-reference/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ string of Priority.LOW: low
114114
string of Priority.HIGH: high
115115
```
116116

117-
The following program demonstrates using `RecordLike` classes to initialise a class using an object initialiser:
117+
The following program demonstrates using `Record` classes to initialise a class using an object initialiser:
118118

119119
```
120120
package
121121
{
122-
[RecordLike]
122+
[Record]
123123
public class AcquisitionOptions
124124
{
125125
public var color:String;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
The `[RecordLike]` meta-data indicates that a class may be instantiated through the object initialiser (`{ ... }`) expression.
1+
The `[Record]` meta-data indicates that a class may be instantiated through the object initialiser (`{ ... }`) expression.
22

33
```as3
44
package com.demo
55
{
6-
[RecordLike]
6+
[Record]
77
public class Options
88
{
99
public var speed:Number;

0 commit comments

Comments
 (0)