File tree 2 files changed +13
-3
lines changed
Filter options
2 files changed +13
-3
lines changed
Original file line number Diff line number Diff line change 47
47
// words - list of words to be always considered correct
48
48
"words" : [
49
49
// RustPython
50
+ " awaitpromise" ,
50
51
" baseclass" ,
51
52
" Bytecode" ,
52
53
" cfgs" ,
58
59
" dumpable" ,
59
60
" GetSet" ,
60
61
" internable" ,
62
+ " jserr" ,
63
+ " jsresult" ,
64
+ " lossily" ,
61
65
" makeunicodedata" ,
62
66
" miri" ,
67
+ " nonoverlapping" ,
63
68
" notrace" ,
64
69
" pyarg" ,
65
70
" pyarg" ,
84
89
" PyResult" ,
85
90
" pyslot" ,
86
91
" PyStaticMethod" ,
92
+ " pystone" ,
87
93
" pystr" ,
88
94
" pystruct" ,
89
95
" pystructseq" ,
90
96
" pytrace" ,
91
97
" reducelib" ,
92
98
" richcompare" ,
99
+ " rustpy" ,
93
100
" RustPython" ,
94
101
" struc" ,
102
+ " surrogateescape" ,
95
103
" tracebacks" ,
96
104
" typealiases" ,
97
- " Unconstructible" ,
105
+ " ufrexp" ,
106
+ " unconstructible" ,
98
107
" unhashable" ,
99
108
" uninit" ,
100
109
" unraisable" ,
110
+ " unresizable" ,
101
111
" wasi" ,
102
112
" zelf" ,
103
113
],
Original file line number Diff line number Diff line change 22
22
//! string has no surrogates, it can be viewed as a UTF-8 Rust [`str`] without
23
23
//! needing any copies or re-encoding.
24
24
//!
25
- //! This implementation is mostly copied from the WTF-8 implentation in the
25
+ //! This implementation is mostly copied from the WTF-8 implementation in the
26
26
//! Rust 1.85 standard library, which is used as the backing for [`OsStr`] on
27
27
//! Windows targets. As previously mentioned, however, it is modified to not
28
28
//! join two surrogates into one codepoint when concatenating strings, in order
@@ -757,7 +757,7 @@ impl Wtf8 {
757
757
758
758
/// Create a WTF-8 slice from a WTF-8 byte slice.
759
759
//
760
- // whooops ! using WTF-8 for interchange!
760
+ // whoops ! using WTF-8 for interchange!
761
761
#[ inline]
762
762
pub fn from_bytes ( b : & [ u8 ] ) -> Option < & Self > {
763
763
let mut rest = b;
You can’t perform that action at this time.
0 commit comments