aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-09-07 13:17:45 -0400
committerAdam Langley <agl@google.com>2015-09-11 20:57:36 +0000
commit7e40d4e584f7e91918b40f9b11cacd33fd7f489f (patch)
tree22eebfc9acc98defe99621a3e53305cd227696a2 /util
parent6fad7bc5864436e0ed5c4ee73631893bd8fb552e (diff)
downloadboringssl-7e40d4e584f7e91918b40f9b11cacd33fd7f489f.zip
boringssl-7e40d4e584f7e91918b40f9b11cacd33fd7f489f.tar.gz
boringssl-7e40d4e584f7e91918b40f9b11cacd33fd7f489f.tar.bz2
Deprecated functions get their own sections.
A small handful of functions got a 'Deprecated:' prefix instead in documentation. Change-Id: Ic151fb7d797514add66bc6465b6851b666a471bc Reviewed-on: https://boringssl-review.googlesource.com/5825 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'util')
-rw-r--r--util/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/doc.go b/util/doc.go
index 0ab6f89..8bbcd4c 100644
--- a/util/doc.go
+++ b/util/doc.go
@@ -451,7 +451,7 @@ again:
if end > 0 {
end += start
w := strings.ToLower(string(s[start:end]))
- if w == "a" || w == "an" || w == "deprecated:" {
+ if w == "a" || w == "an" {
start = end + 1
goto again
}