From bbfa1c8fcffabe9aa2e38aad824dc223a704b201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 28 Feb 2023 12:19:04 +0100 Subject: [PATCH] [spellchecker] RuntimeDictionaryProvider: javadoc GitOrigin-RevId: 00d0c6e1948b265a81b11aab68c23dfe92642739 --- .../spellchecker/dictionary/RuntimeDictionaryProvider.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spellchecker/src/com/intellij/spellchecker/dictionary/RuntimeDictionaryProvider.java b/spellchecker/src/com/intellij/spellchecker/dictionary/RuntimeDictionaryProvider.java index 156101053d0d..94a9f88a50d8 100644 --- a/spellchecker/src/com/intellij/spellchecker/dictionary/RuntimeDictionaryProvider.java +++ b/spellchecker/src/com/intellij/spellchecker/dictionary/RuntimeDictionaryProvider.java @@ -1,14 +1,14 @@ -// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. +// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. package com.intellij.spellchecker.dictionary; import com.intellij.openapi.extensions.ExtensionPointName; /** - * Extension point to provide a spellchecker with additional non file-based dictionaries. + * Extension point to provide a spellchecker with additional non-file-based dictionaries. *

* Unlike {@link CustomDictionaryProvider} and {@link com.intellij.spellchecker.BundledDictionaryProvider} * that require {@link Dictionary} to have a file representation {@link RuntimeDictionaryProvider} supports - * non file-based dictionaries. + * non-file-based dictionaries. *

* It means that dictionary may be even generated at a runtime, or downloaded from remote server. *