summary refs log tree commit diff stats
path: root/lib/pure/strscans.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pure/strscans.nim')
-rw-r--r--lib/pure/strscans.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/strscans.nim b/lib/pure/strscans.nim
index 42bb281eb..83a82dd0b 100644
--- a/lib/pure/strscans.nim
+++ b/lib/pure/strscans.nim
@@ -31,10 +31,10 @@ As can be seen from the examples, strings are matched verbatim except for
 substrings starting with ``$``. These constructions are available:
 
 =================   ========================================================
-``$b``              Matches an decimal integer. This uses ``parseutils.parseBin``.
+``$b``              Matches a binary integer. This uses ``parseutils.parseBin``.
 ``$o``              Matches an octal integer. This uses ``parseutils.parseOct``.
-``$i``              Matches an decimal integer. This uses ``parseutils.parseInt``.
-``$h``              Matches an hex integer. This uses ``parseutils.parseHex``.
+``$i``              Matches a decimal integer. This uses ``parseutils.parseInt``.
+``$h``              Matches a hex integer. This uses ``parseutils.parseHex``.
 ``$f``              Matches a floating pointer number. Uses ``parseFloat``.
 ``$w``              Matches an ASCII identifier: ``[A-Z-a-z_][A-Za-z_0-9]*``.
 ``$s``              Skips optional whitespace.
evel&id=887987bb1aa27e8fe7dae3a5835b90c76b9fbb12'>887987bb1 ^
154682600 ^
887987bb1 ^
c8bebe92e ^

e25474154 ^
61e57cfa1 ^

740527813 ^
61e57cfa1 ^

94d1aa510 ^
61e57cfa1 ^

94d1aa510 ^
61e57cfa1 ^

c8bebe92e ^
e25474154 ^
61e57cfa1 ^
e25474154 ^
61e57cfa1 ^
c8bebe92e ^
dd806cafa ^
61e57cfa1 ^
5e15dec17 ^
61e57cfa1 ^
2df9b442c ^





5506e8491 ^
b961e47bf ^
fb27357b6 ^
5e839d50b ^
a7911addf ^
dbf9117c5 ^
a639824e5 ^
1e6aef62b ^
8d3966923 ^
cabbcd411 ^
87815cbdf ^
b3cecddd6 ^
8ef66b973 ^
a8edf67a2 ^
9c4a60193 ^
adf8eea4d ^
f04d21f27 ^
5e368f363 ^
f7f3a25be ^
3308d2658 ^
762ade117 ^
8d1a5dc8e ^
33814cf63 ^
399c5e38b ^
6baca5869 ^
ed5b7cbac ^
f64f9e50c ^
4948cf3b4 ^
599b5d6dc ^
f555338ce ^
5b5985240 ^
53566f716 ^
4d5cce988 ^
dae545094 ^
0da91aa74 ^
887987bb1 ^



154682600 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91