Skip to content

Commit 61b3d30

Browse files
committed
[docs][methods][9/n] reorder examples
1 parent 5c3e7fe commit 61b3d30

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

docs/methods/METHODS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

examples/docs/methods/code_constructs/Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,18 @@
33
all: build
44

55
build:
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

1313
clean:
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

0 commit comments

Comments
 (0)