Fix problem with RDAP help information

Soon this will be rewritten with much more complete information. But this fixes
an obviously wrong bit in the meantime.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=172004672
This commit is contained in:
mountford 2017-10-12 13:37:30 -07:00 committed by jianglai
parent 05f6ad80ab
commit 7e85ae9964

View file

@ -1063,7 +1063,7 @@ public final class RegistryConfig {
.put("/", RdapNoticeDescriptor.builder()
.setTitle("RDAP Help")
.setDescription(ImmutableList.of(
"RDAP Help Topics (use /help/topic for information)",
"RDAP Help Topics (use /help/index for information)",
"syntax",
"tos (Terms of Service)"))
.setLinkValueSuffix("help/")
@ -1071,7 +1071,7 @@ public final class RegistryConfig {
.put("/index", RdapNoticeDescriptor.builder()
.setTitle("RDAP Help")
.setDescription(ImmutableList.of(
"RDAP Help Topics (use /help/topic for information)",
"RDAP Help Topics (use /help/index for information)",
"syntax",
"tos (Terms of Service)"))
.setLinkValueSuffix("help/index")