You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pull requests for typos, examples, and other improvements are welcome. To file an issue, please use the [libraries repository](https://github.com/stlab/libraries).
Periodically run `gem update` and `bundle update` to make sure you have the latest jekyll tooling.
25
-
26
-
## Building Docs
3
+
This site is available at [stlab.cc](https://stlab.cc).
27
4
28
-
```
29
-
cd ./docs
30
-
bundle exec jekyll serve --watch
31
-
```
32
-
33
-
Documentation viewable at `localhost:4000`
34
-
Modifying sources should auto-regenerate the documentation
5
+
Pull requests for typos, examples, and other improvements are welcome. To file an issue, please use the [libraries repository](https://github.com/stlab/libraries).
35
6
36
-
## Building Examples
7
+
## Building the Documentation
37
8
38
-
1.`./build.sh` will download dependencies, build, and run all the `*.cpp` files in the `libraries` directory.
9
+
To run a local Jekyll server, see the instructions in the docker-tools [README](../tools/docker-tools/README.md).
39
10
40
11
## Running Hyde in Docker
41
12
42
-
The following directory structure is assumed.
43
-
44
-
[ The longer term plan is to migrate the docs for the libraries into the library repo. We also need a plan for the structure of the build directory, a]
45
-
46
-
```
47
-
. # This directory stlab.github.io
48
-
../libraries # The stlab/libraries repo
49
-
../builds/hyde # The cmake build directory configures for building docs
50
-
```
51
-
52
13
Configure the build as follows:
53
14
54
15
```
@@ -81,5 +42,6 @@ cd /mnt/host/libraries/docs
81
42
```
82
43
83
44
\[ this is from the old docs - need to update the docs and script.
45
+
84
46
> (or, simply `-u`) to generate the boilerplate for it. Then, fill in any fields marked as `__MISSING__`. Fields marked as `__OPTIONAL__` may be omitted.
Copy file name to clipboardexpand all lines: docs/include/stlab/concurrency/await.hpp/index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ layout: library
3
3
title: stlab/concurrency/await.hpp
4
4
hyde:
5
5
owner: sean-parent
6
-
brief: "Await provides utilities to synchronously await the value from a `future` and to notify the default executor that a task is waiting. Blocking calls are discouraged because they may lead to deadlocks or thread explosions.\n\nThere is a good presentation of the issues [here](https://youtu.be/Z86b3Rd09sE).\n"
6
+
brief: "Await provides utilities to await the value from a `future<>` synchronously and to notify the default executor that a task is waiting. Blocking calls are discouraged because they may lead to deadlocks or thread explosions.\n\nThere is a good presentation of the issues [here](https://youtu.be/Z86b3Rd09sE).\n"
0 commit comments