Skip to content

Commit 0750821

Browse files
committed
hotfix some docs
1 parent b73980b commit 0750821

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

docs/src/man/output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CurrentModule = JudiLing
33
```
44

5-
# Utils
5+
# Output
66

77
```@docs
88
write2csv

docs/src/man/pickle.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
```@meta
2+
CurrentModule = JudiLing
3+
```
4+
5+
# Utils
6+
7+
```@docs
8+
mypickle
9+
myunpickle
10+
```

docs/src/man/test_combo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CurrentModule = JudiLing
33
```
44

5-
# Find Paths
5+
# Test Combo
66

77
```@docs
88
test_combo

src/pickle.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,15 @@ pickle = pyimport("pickle")
88

99

1010
"""
11+
save pickle from python pickle file
1112
"""
1213
function mypickle end
1314

15+
"""
16+
load pickle from python pickle file
17+
"""
18+
function myunpickle end
19+
1420
function mypickle(filename, obj)
1521
out = open(filename,"w")
1622
pickle.dump(obj, out)

0 commit comments

Comments
 (0)