Skip to content

Commit 5f3adea

Browse files
committed
Raname Constructor to Creator
1 parent f742785 commit 5f3adea

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ end
7676
```
7777
-------------------------------------------------------
7878

79-
# Example - Constructor
79+
# Example - Creator
8080

8181
After we defined the structs, we can create instances of them by passing our data to the fields:
8282

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# see exmaples.jl first
22

3-
# Constructor
3+
# Creator
44

55
P1 = Person(age=24, field="Mechanical Engineering", courses = ["Artificial Intelligence", "Robotics"], id = 1, comment = "He is a genius")
66

examples/examples.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using AcuteML, DataFrames
22

33
include("structdefinition.jl")
4-
include("constructor.jl")
4+
include("creator.jl")
55
include("extractor.jl")
66
include("tables.jl")

src/AcuteML.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ end
188188
```
189189
-------------------------------------------------------
190190
191-
# Example - Constructor
191+
# Example - Creator
192192
193193
After we defined the structs, we can create instances of them by passing our data to the fields:
194194
File renamed without changes.

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function check_course(age, field, GPA, courses, professors, id, comment)
3535
return any(in.(courses, Ref(relevant)))
3636
end
3737

38-
include("constructor.jl")
38+
include("creator.jl")
3939
include("extractor.jl")
4040
include("tables.jl")
4141
include("xmlutils.jl")

0 commit comments

Comments
 (0)