From c3807dfb34e3d0696517f3adf1f10ed096bd5fc3 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 6 Mar 2018 10:41:07 -0500 Subject: [PATCH] remove value judgement from std lib API docs documentation should be purely technical, and not contain opinions about how easy or hard something is. --- std/unicode.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/unicode.zig b/std/unicode.zig index 66779f401a..356df824f0 100644 --- a/std/unicode.zig +++ b/std/unicode.zig @@ -96,7 +96,7 @@ pub fn utf8ValidateSlice(s: []const u8) bool { return true; } -/// Utf8View makes it easy to iterate the code points of a utf-8 encoded string. +/// Utf8View iterates the code points of a utf-8 encoded string. /// /// ``` /// var utf8 = (try std.unicode.Utf8View.init("hi there")).iterator();