File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
11
11
const std = @import ("std" );
12
12
13
+ // TODO: remove all decls marked as DEPRECATED after 0.10.0's release
14
+
13
15
/// The C0 control codes of the ASCII encoding.
14
16
///
15
17
/// See also: https://en.wikipedia.org/wiki/C0_and_C1_control_codes and `isControl`.
@@ -141,13 +143,13 @@ pub const control_code = struct {
141
143
pub const sub = 0x1A ;
142
144
/// Escape.
143
145
pub const esc = 0x1B ;
144
- /// File separator .
146
+ /// File Separator .
145
147
pub const fs = 0x1C ;
146
148
/// Group Separator.
147
149
pub const gs = 0x1D ;
148
150
/// Record Separator.
149
151
pub const rs = 0x1E ;
150
- /// Unit separator .
152
+ /// Unit Separator .
151
153
pub const us = 0x1F ;
152
154
153
155
/// Delete.
@@ -296,8 +298,6 @@ fn inTable(c: u8, t: tIndex) bool {
296
298
return (combinedTable [c ] & (@as (u8 , 1 ) << @enumToInt (t ))) != 0 ;
297
299
}
298
300
299
- // remove all decls marked as DEPRECATED after 0.10.0
300
-
301
301
/// DEPRECATED: use `isAlphanumeric`
302
302
pub const isAlNum = isAlphanumeric ;
303
303
/// DEPRECATED: use `isAlpha`
You can’t perform that action at this time.
0 commit comments