From 3d02ca9e0534832735de8a62f81cf110bd58a1e9 Mon Sep 17 00:00:00 2001 From: kwantam Date: Wed, 15 Apr 2015 16:03:36 -0400 Subject: [PATCH] tiny doc touch --- scripts/unicode.py | 4 ++-- src/tables.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/unicode.py b/scripts/unicode.py index cba4d27..0a4a138 100755 --- a/scripts/unicode.py +++ b/scripts/unicode.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright 2011-2013 The Rust Project Developers. See the COPYRIGHT +# Copyright 2011-2015 The Rust Project Developers. See the COPYRIGHT # file at the top-level directory of this distribution and at # http://rust-lang.org/COPYRIGHT. # @@ -315,7 +315,7 @@ if __name__ == "__main__": unicode_version = re.search(pattern, readme.read()).groups() rf.write(""" /// The version of [Unicode](http://www.unicode.org/) -/// that the unicode parts of `CharExt` and `UnicodeStrPrelude` traits are based on. +/// that this version of unicode-normalization is based on. pub const UNICODE_VERSION: (u64, u64, u64) = (%s, %s, %s); """ % unicode_version) diff --git a/src/tables.rs b/src/tables.rs index fd6f763..f8c9c6f 100644 --- a/src/tables.rs +++ b/src/tables.rs @@ -8,12 +8,12 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// NOTE: The following code was generated by "src/etc/unicode.py", do not edit directly +// NOTE: The following code was generated by "scripts/unicode.py", do not edit directly #![allow(missing_docs, non_upper_case_globals, non_snake_case)] /// The version of [Unicode](http://www.unicode.org/) -/// that the unicode parts of `CharExt` and `UnicodeStrPrelude` traits are based on. +/// that this version of unicode-normalization is based on. pub const UNICODE_VERSION: (u64, u64, u64) = (7, 0, 0); pub mod normalization {