From f52d442128558a46488f927983d21653215b83a0 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 20 Jun 2018 22:08:15 +1000 Subject: [PATCH] cleanup of language --- manuscript/chapter8.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manuscript/chapter8.txt b/manuscript/chapter8.txt index c91a83f..acd7f21 100644 --- a/manuscript/chapter8.txt +++ b/manuscript/chapter8.txt @@ -54,12 +54,12 @@ | Parameter | What does it do? | | --------- | ---------------- | -| `${VAR:-STRING}` | If `VAR` is empty or unset, use `STRING` as it's value. -| `${VAR-STRING}` | If `VAR` is unset, use `STRING` as it's value. +| `${VAR:-STRING}` | If `VAR` is empty or unset, use `STRING` as its value. +| `${VAR-STRING}` | If `VAR` is unset, use `STRING` as its value. | `${VAR:=STRING}` | If `VAR` is empty or unset, set the value of `VAR` to `STRING`. | `${VAR=STRING}` | If `VAR` is unset, set the value of `VAR` to `STRING`. -| `${VAR:+STRING}` | If `VAR` is not empty, use `STRING` as it's value. -| `${VAR+STRING}` | If `VAR` is set, use `STRING` as it's value. +| `${VAR:+STRING}` | If `VAR` is not empty, use `STRING` as its value. +| `${VAR+STRING}` | If `VAR` is set, use `STRING` as its value. | `${VAR:?STRING}` | Display an error if empty or unset. | `${VAR?STRING}` | Display an error if unset.