Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/howto_use_legacy_code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Run the CMake configure step. If needed, this will download and build any
dependencies for your function:

```shell
cmake -H. -B.build -DCMAKE_TOOLCHAIN_FILE=$HOME/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake -S . -B .build -DCMAKE_TOOLCHAIN_FILE=$HOME/vcpkg/scripts/buildsystems/vcpkg.cmake
```

You should see output like this:
Expand Down Expand Up @@ -130,7 +130,7 @@ create a binary called `local_server` in the .build subdirectory.

This will produce a standalone HTTP server, which you can run locally using:

```shell
```shell
.build/main --port 8080
```

Expand Down
4 changes: 2 additions & 2 deletions examples/site/howto_local_development/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Run the CMake configure step. If needed, this will download and build any
dependencies for your function:

```shell
cmake -H. -B.build -DCMAKE_TOOLCHAIN_FILE=$HOME/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake -S . -B .build -DCMAKE_TOOLCHAIN_FILE=$HOME/vcpkg/scripts/buildsystems/vcpkg.cmake
```

You should see output like this:
Expand Down Expand Up @@ -118,7 +118,7 @@ create a binary called `local_server` in the .build subdirectory.

This will produce a standalone HTTP server, which you can run locally using:

```shell
```shell
.build/local_server --port 8080
```

Expand Down