8000 tiny doc touch · Florob/unicode-normalization@3d02ca9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3d02ca9

Browse files
committed
tiny doc touch
1 parent 7a49d25 commit 3d02ca9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scripts/unicode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
#
3-
# Copyright 2011-2013 The Rust Project Developers. See the COPYRIGHT
3+
# Copyright 2011-2015 The Rust Project Developers. See the COPYRIGHT
44
# file at the top-level directory of this distribution and at
55
# http://rust-lang.org/COPYRIGHT.
66
#
@@ -315,7 +315,7 @@ def comp_pfun(char):
315315
unicode_version = re.search(pattern, readme.read()).groups()
316316
rf.write("""
317317
/// The version of [Unicode](http://www.unicode.org/)
318-
/// that the unicode parts of `CharExt` and `UnicodeStrPrelude` traits are based on.
318+
/// that this version of unicode-normalization is based on.
319319
pub const UNICODE_VERSION: (u64, u64, u64) = (%s, %s, %s);
320320
321321
""" % unicode_version)

src/tables.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// NOTE: The following code was generated by "src/etc/unicode.py", do not edit directly
11+
// NOTE: The following code was generated by "scripts/unicode.py", do not edit directly
1212

1313
#![allow(missing_docs, non_upper_case_globals, non_snake_case)]
1414

1515
/// The version of [Unicode](http://www.unicode.org/)
16-
/// that the unicode parts of `CharExt` and `UnicodeStrPrelude` traits are based on.
16+
/// that this version of unicode-normalization is based on.
1717
pub const UNICODE_VERSION: (u64, u64, u64) = (7, 0, 0);
1818

1919
pub mod normalization {

0 commit comments

Comments
 (0)
0