Skip to content

Commit

Permalink
fix: Typos found in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
saintmalik authored and codebien committed Oct 13, 2021
1 parent b67fb7c commit fb51e84
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion release notes/v0.22.0.md
Expand Up @@ -62,7 +62,7 @@ Previously most metrics were emitted only when a script iteration ended. With th

### Portable builds (#658)

Before this, k6 builds that were done with just the standard Go language tools (i.e. `go get`, `go build`, etc.) [were not portable](https://github.com/loadimpact/k6/issues/545) because static resources like JS libraries had to be embedded in the binary after the build. Building fully portable binaries was done with the `build-release.sh` script (which used go.rice to bundle the static resources in the binary), but now that embedding is done beforehand and is commited in the git repo, so commands like `go get/build/install` produce fully-portable binary files without extra steps.
Before this, k6 builds that were done with just the standard Go language tools (i.e. `go get`, `go build`, etc.) [were not portable](https://github.com/loadimpact/k6/issues/545) because static resources like JS libraries had to be embedded in the binary after the build. Building fully portable binaries was done with the `build-release.sh` script (which used go.rice to bundle the static resources in the binary), but now that embedding is done beforehand and is committed in the git repo, so commands like `go get/build/install` produce fully-portable binary files without extra steps.

## Bugs fixed!

Expand Down
2 changes: 1 addition & 1 deletion release notes/v0.25.1.md
Expand Up @@ -6,5 +6,5 @@ A minor release that fixes some of the issues in the v0.25.0 release.
* HTTP: Fix how request bodies are internally specified so we can properly handle redirects and can retry some HTTP/2 requests. (#1093)
* HTTP: Fix the handling of response decoding errors and slightly improve the `digest` auth and `--http-debug` code. (#1102)
* HTTP: Always set the correct `Content-Length` header for all requests. (#1106)
* JS: Fix a panic when executing archive bundles for scripts with unsuccessfull `import` / `require()` calls. (#1097)
* JS: Fix a panic when executing archive bundles for scripts with unsuccessful `import` / `require()` calls. (#1097)
* JS: Fix some issues related to the handling of `exports` corner cases. (#1099)
2 changes: 1 addition & 1 deletion samples/websocket.js
Expand Up @@ -42,7 +42,7 @@ export default function () {

socket.on('error', function (e) {
if (e.error() != "websocket: close sent") {
console.log('An unexpected error occured: ', e.error());
console.log('An unexpected error occurred: ', e.error());
}
});

Expand Down

0 comments on commit fb51e84

Please sign in to comment.