Skip to content

Commit 4b4769a

Browse files
committed
small docs touch
1 parent dad8102 commit 4b4769a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/unicode.py

Lines changed: 3 additions & 3 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
#
@@ -20,7 +20,7 @@
2020

2121
import fileinput, re, os, sys, operator
2222

23-
preamble = '''// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
23+
preamble = '''// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2424
// file at the top-level directory of this distribution and at
2525
// http://rust-lang.org/COPYRIGHT.
2626
//
@@ -215,7 +215,7 @@ def emit_break_module(f, break_table, break_cats, name):
215215
unicode_version = re.search(pattern, readme.read()).groups()
216216
rf.write("""
217217
/// The version of [Unicode](http://www.unicode.org/)
218-
/// that the unicode parts of `CharExt` and `UnicodeStrPrelude` traits are based on.
218+
/// that this version of unicode-segmentation is based on.
219219
pub const UNICODE_VERSION: (u64, u64, u64) = (%s, %s, %s);
220220
221221
""" % unicode_version)

src/tables.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -13,7 +13,7 @@
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-segmentation is based on.
1717
pub const UNICODE_VERSION: (u64, u64, u64) = (7, 0, 0);
1818

1919
pub mod grapheme {

0 commit comments

Comments
 (0)