summaryrefslogtreecommitdiff
path: root/HOWTO
diff options
context:
space:
mode:
Diffstat (limited to 'HOWTO')
-rw-r--r--HOWTO/DEVELOPMENT.md6
-rw-r--r--HOWTO/INSTALL-WIN32.md4
-rw-r--r--HOWTO/TESTING.md2
3 files changed, 6 insertions, 6 deletions
diff --git a/HOWTO/DEVELOPMENT.md b/HOWTO/DEVELOPMENT.md
index 2220d9ab71..67f8119d17 100644
--- a/HOWTO/DEVELOPMENT.md
+++ b/HOWTO/DEVELOPMENT.md
@@ -1,7 +1,7 @@
# Developing Erlang/OTP
The Erlang/OTP development repository is quite large and the make system
-contains a lot of functionality to help when a developing. This howto
+contains a lot of functionality to help when developing. This howto
will try to showcase the most important features of the make system.
The guide is mostly aimed towards development on a Unix platform, but
@@ -550,8 +550,8 @@ in order to fetch the base image. If you want to build the base image locally
you can do that like this:
```bash
-docker built -t docker.pkg.github.com/erlang/otp/ubuntu-base \
- --build-arg BASE=ubuntu --build-arg USER=otptest --build-arg uid=$(id -u) \
+docker build -t docker.pkg.github.com/erlang/otp/ubuntu-base \
+ --build-arg BASE=ubuntu:20.04 --build-arg USER=otptest --build-arg uid=$(id -u) \
--build-arg GROUP=uucp --build-arg gid=$(id -g) \
-f .github/dockerfiles/Dockerfile.ubuntu-base .github/
```
diff --git a/HOWTO/INSTALL-WIN32.md b/HOWTO/INSTALL-WIN32.md
index 4ad0159bcd..bd8387aaae 100644
--- a/HOWTO/INSTALL-WIN32.md
+++ b/HOWTO/INSTALL-WIN32.md
@@ -68,7 +68,7 @@ This is the short story though, for the experienced and impatient:
<http://www.erlang.org/download.html>) and unpack with `tar`
to the windows disk for example to: /mnt/c/src/
- * Install mingw-gcc, and make: `sudo apt install g++-mingw-w64 gcc-mingw-w64 make`
+ * Install mingw-gcc, and make: `sudo apt update && sudo apt install g++-mingw-w64 gcc-mingw-w64 make`
* `$ cd UNPACK_DIR`
@@ -150,7 +150,7 @@ the different tools:
Install into `C:/OpenSSL-Win64` (or `C:/OpenSSL-Win32`)
* wxWidgets (optional)
- You need this to build wx and use gui's in debugger and observer.
+ You need this to build wx to use gui's in debugger and observer.
We recommend v3.1.4 or later.
Unpack into `c:/opt/local64/pgm/wxWidgets-3.1.4`
diff --git a/HOWTO/TESTING.md b/HOWTO/TESTING.md
index 66cc21f89a..c6bad4f65c 100644
--- a/HOWTO/TESTING.md
+++ b/HOWTO/TESTING.md
@@ -193,7 +193,7 @@ Examining the results
---------------------
Open the file `$ERL_TOP/release/tests/test_server/index.html` in a web browser. Or open
-`$ERL_TOP/release/tests/test_server/last_test.html` when a test suite is running to
+`$ERL_TOP/release/tests/test_server/suite.log.latest.html` when a test suite is running to
examine the results so far for the currently executing test suite.