Skip to content

Commit 23fa3c5

Browse files
committed
docs update
1 parent fda7cd7 commit 23fa3c5

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

docs/Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY = help docs preview reset push
1+
.PHONY = help docs preview reset push push_main
22

33
.DEFAULT: help
44
help:
@@ -10,6 +10,8 @@ help:
1010
@echo " reset the documentation"
1111
@echo "make push"
1212
@echo " push the documentation changes"
13+
@echo "make push_main"
14+
@echo " push the documentation changes to the main repository"
1315

1416
docs:
1517
# Delete previous built files
@@ -29,3 +31,6 @@ reset:
2931

3032
push:
3133
cd site && git push
34+
35+
push_main:
36+
git add . && git commit -m "docs update" && git push

docs/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ If you are satisfied with the changes, you can do
3333
make push
3434
```
3535

36-
to push the changes to remote repository for submodule `site`.
36+
to push the changes to remote repository for submodule `site`.
3737

38-
Finally, do not forget to make a new commit to the main repository i.e., `banditpylib` to record this update.
38+
Finally, do not forget to do
39+
40+
```bash
41+
make push_main
42+
```
43+
44+
make a new commit to the main repository i.e., `banditpylib` to record this update.

docs/source/references.bib

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,9 @@ @article{DBLP:journals/siamcomp/AuerCFS02
141141
year = {2002},
142142
}
143143

144-
@misc{tao2019collaborative,
144+
@inproceedings{tao2019collaborative,
145145
title={Collaborative Learning with Limited Interaction: Tight Bounds for Distributed Exploration in Multi-Armed Bandits},
146146
author={Chao Tao and Qin Zhang and Yuan Zhou},
147+
booktitle = {FOCS},
147148
year={2019},
148-
eprint={1904.03293},
149-
archivePrefix={arXiv},
150-
primaryClass={cs.LG}
151149
}

0 commit comments

Comments
 (0)