ForwardIndex: fix javadoc formatting
authorYann Cébron <yann.cebron@jetbrains.com>
Wed, 12 Aug 2020 15:28:43 +0000 (17:28 +0200)
committerintellij-monorepo-bot <intellij-monorepo-bot-no-reply@jetbrains.com>
Wed, 12 Aug 2020 16:17:54 +0000 (16:17 +0000)
GitOrigin-RevId: 7d1af4678297b3f26a05a4c657b6dd462b1fedff

platform/util/src/com/intellij/util/indexing/impl/forward/ForwardIndex.java

index 3940420983e65a4e0d4895a0418c0e6ba5ae5bb1..2eb9f7a36571423c21f40d15fc9f9dc300020064 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
+// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
 package com.intellij.util.indexing.impl.forward;
 
 import com.intellij.openapi.util.io.ByteArraySequence;
@@ -10,7 +10,7 @@ import org.jetbrains.annotations.Nullable;
 import java.io.IOException;
 
 /**
- * Represents key-value storage held by <a href="https://en.wikipedia.org/wiki/Search_engine_indexing#The_forward_index">forward index data structure</>.
+ * Represents key-value storage held by <a href="https://en.wikipedia.org/wiki/Search_engine_indexing#The_forward_index">forward index data structure</a>.
  */
 @ApiStatus.Experimental
 public interface ForwardIndex extends KeyValueStore<Integer, ByteArraySequence> {