File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
examples/docs/methods/code_constructs Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -139,12 +139,12 @@ from the `.mli` if there is one and the `.ml`.
139139
140140- The [ code constructs] ( ./code_constructs ) directory contains a collection of
141141 examples dedicated to specific code constructs :
142- - [ Immediate object] ( ./code_constructs/IMMEDIATE_OBJ.md )
143142 - [ Class] ( ./code_constructs/CLASS.md )
143+ - [ Constructor] ( ./code_constructs/CONSTRUCTOR.md )
144144 - [ Class type] ( ./code_constructs/CLASS_TYPE.md )
145145 - [ Inheritance] ( ./code_constructs/INHERITANCE.md )
146+ - [ Immediate object] ( ./code_constructs/IMMEDIATE_OBJ.md )
146147 - [ Object type] ( ./code_constructs/OBJECT_TYPE.md )
147- - [ Constructor] ( ./code_constructs/CONSTRUCTOR.md )
148148
149149# Limitations
150150
Original file line number Diff line number Diff line change 33all : build
44
55build :
6- make -C imm_obj build
76 make -C class build
7+ make -C constructor build
88 make -C class_type build
99 make -C inheritance build
10+ make -C imm_obj build
1011 make -C object_type build
11- make -C constructor build
1212
1313clean :
1414 rm -f * ~ * .cm* * .o * .obj
15- make -C imm_obj clean
1615 make -C class clean
1716 make -C class_type clean
1817 make -C inheritance clean
18+ make -C imm_obj clean
1919 make -C object_type clean
20- make -C constructor clean
2120
You can’t perform that action at this time.
0 commit comments