Fossil SCM
Consistently use ` instead of ' to surround individual characters
Commit
565685b5c8d041a3b83920e20f6a24b7bf58a4be913925e842ba2d0f09e35d1f
Parent
8df6df49fc6c988…
1 file changed
+7
-7
+7
-7
| --- www/globs.md | ||
| +++ www/globs.md | ||
| @@ -39,21 +39,21 @@ | ||
| 39 | 39 | `[`. |
| 40 | 40 | |
| 41 | 41 | |
| 42 | 42 | Some examples: |
| 43 | 43 | |
| 44 | - [a-d] Matches any one of 'a', 'b', 'c', or 'd' | |
| 45 | - [a-] Matches either 'a' or '-' | |
| 46 | - [][] Matches either ']' or '[' | |
| 47 | - [^]] Matches exactly one character other than ']' | |
| 48 | - []^] Matches either ']' or '^' | |
| 44 | + [a-d] Matches any one of `a`, `b`, `c`, or `d` | |
| 45 | + [a-] Matches either `a` or `-` | |
| 46 | + [][] Matches either `]` or `[` | |
| 47 | + [^]] Matches exactly one character other than `]` | |
| 48 | + []^] Matches either `]` or `^` | |
| 49 | 49 | |
| 50 | 50 | The glob is compared to the canonical name of the file in the checkout |
| 51 | 51 | tree, and must match the entire name to be considered a match. |
| 52 | 52 | |
| 53 | 53 | Unlike typical Unix shell globs, wildcard sequences are allowed to |
| 54 | -match '/' directory separators as well as the initial '.' in the name | |
| 54 | +match `/` directory separators as well as the initial `.` in the name | |
| 55 | 55 | of a hidden file or directory. |
| 56 | 56 | |
| 57 | 57 | A list of GLOBs is simply one or more GLOBs separated by whitespace or |
| 58 | 58 | commas. If a GLOB must contain a space or comma, it can be quoted with |
| 59 | 59 | either single or double quotation marks. |
| @@ -75,11 +75,11 @@ | ||
| 75 | 75 | The simplest GLOB pattern is just a bare name of a file named with the |
| 76 | 76 | usual assortment of allowed file name characters. Such a pattern |
| 77 | 77 | matches that one file: the GLOB `README` matches only a file named |
| 78 | 78 | `README` in the root of the tree. The GLOB `*/README` would match a |
| 79 | 79 | file named `README` anywhere except the root, since the glob requires |
| 80 | -that at least one '/' be in the name. (Recall that `/` matches the | |
| 80 | +that at least one `/` be in the name. (Recall that `/` matches the | |
| 81 | 81 | directory separator regardless of whether it is `/` or `\` on your |
| 82 | 82 | system.) |
| 83 | 83 | |
| 84 | 84 | |
| 85 | 85 | |
| 86 | 86 |
| --- www/globs.md | |
| +++ www/globs.md | |
| @@ -39,21 +39,21 @@ | |
| 39 | `[`. |
| 40 | |
| 41 | |
| 42 | Some examples: |
| 43 | |
| 44 | [a-d] Matches any one of 'a', 'b', 'c', or 'd' |
| 45 | [a-] Matches either 'a' or '-' |
| 46 | [][] Matches either ']' or '[' |
| 47 | [^]] Matches exactly one character other than ']' |
| 48 | []^] Matches either ']' or '^' |
| 49 | |
| 50 | The glob is compared to the canonical name of the file in the checkout |
| 51 | tree, and must match the entire name to be considered a match. |
| 52 | |
| 53 | Unlike typical Unix shell globs, wildcard sequences are allowed to |
| 54 | match '/' directory separators as well as the initial '.' in the name |
| 55 | of a hidden file or directory. |
| 56 | |
| 57 | A list of GLOBs is simply one or more GLOBs separated by whitespace or |
| 58 | commas. If a GLOB must contain a space or comma, it can be quoted with |
| 59 | either single or double quotation marks. |
| @@ -75,11 +75,11 @@ | |
| 75 | The simplest GLOB pattern is just a bare name of a file named with the |
| 76 | usual assortment of allowed file name characters. Such a pattern |
| 77 | matches that one file: the GLOB `README` matches only a file named |
| 78 | `README` in the root of the tree. The GLOB `*/README` would match a |
| 79 | file named `README` anywhere except the root, since the glob requires |
| 80 | that at least one '/' be in the name. (Recall that `/` matches the |
| 81 | directory separator regardless of whether it is `/` or `\` on your |
| 82 | system.) |
| 83 | |
| 84 | |
| 85 | |
| 86 |
| --- www/globs.md | |
| +++ www/globs.md | |
| @@ -39,21 +39,21 @@ | |
| 39 | `[`. |
| 40 | |
| 41 | |
| 42 | Some examples: |
| 43 | |
| 44 | [a-d] Matches any one of `a`, `b`, `c`, or `d` |
| 45 | [a-] Matches either `a` or `-` |
| 46 | [][] Matches either `]` or `[` |
| 47 | [^]] Matches exactly one character other than `]` |
| 48 | []^] Matches either `]` or `^` |
| 49 | |
| 50 | The glob is compared to the canonical name of the file in the checkout |
| 51 | tree, and must match the entire name to be considered a match. |
| 52 | |
| 53 | Unlike typical Unix shell globs, wildcard sequences are allowed to |
| 54 | match `/` directory separators as well as the initial `.` in the name |
| 55 | of a hidden file or directory. |
| 56 | |
| 57 | A list of GLOBs is simply one or more GLOBs separated by whitespace or |
| 58 | commas. If a GLOB must contain a space or comma, it can be quoted with |
| 59 | either single or double quotation marks. |
| @@ -75,11 +75,11 @@ | |
| 75 | The simplest GLOB pattern is just a bare name of a file named with the |
| 76 | usual assortment of allowed file name characters. Such a pattern |
| 77 | matches that one file: the GLOB `README` matches only a file named |
| 78 | `README` in the root of the tree. The GLOB `*/README` would match a |
| 79 | file named `README` anywhere except the root, since the glob requires |
| 80 | that at least one `/` be in the name. (Recall that `/` matches the |
| 81 | directory separator regardless of whether it is `/` or `\` on your |
| 82 | system.) |
| 83 | |
| 84 | |
| 85 | |
| 86 |