Skip to content

Commit ef2fd07

Browse files
committed
correct context mapper spelling
1 parent a588025 commit ef2fd07

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ intellijPlatform {
4343

4444
pluginConfiguration {
4545
id = "org.contextmapper.intellij-plugin"
46-
name = "ContextMapper"
46+
name = "Context Mapper"
4747
version = "0.3.1"
4848

4949
productDescriptor {
@@ -55,7 +55,7 @@ intellijPlatform {
5555
}
5656

5757
vendor {
58-
name = "ContextMapper"
58+
name = "Context Mapper"
5959
url = "https://contextmapper.org"
6060
}
6161

@@ -100,7 +100,7 @@ tasks {
100100
}
101101

102102
val npmInstall by registering(Exec::class) {
103-
description = "Downloads the ContextMapper Language Server NPM package"
103+
description = "Downloads the Context Mapper Language Server NPM package"
104104
group = LifecycleBasePlugin.BUILD_GROUP
105105
workingDir(layout.projectDirectory.dir("lsp"))
106106
val installCommand = "npm install"
@@ -113,7 +113,7 @@ tasks {
113113
}
114114

115115
val copyLanguageServer by registering(Copy::class) {
116-
description = "Extracts and copies the ContextMapper Language Server to the build directory"
116+
description = "Extracts and copies the Context Mapper Language Server to the build directory"
117117
group = LifecycleBasePlugin.BUILD_GROUP
118118
dependsOn(npmInstall)
119119

src/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
factoryClass="org.contextmapper.intellij.lsp4ij.server.ContextMapperDslServerFactory">
5252
<description>
5353
<![CDATA[
54-
<p>ContextMapper Language Server</p>
54+
<p>Context Mapper Language Server</p>
5555
<p>
56-
The ContextMapper Language Server provides support for the ContextMapper DSL in IntelliJ IDEA.
56+
The Context Mapper Language Server provides support for the ContextMapper DSL in IntelliJ IDEA.
5757
</p>
5858
]]>
5959
</description>

0 commit comments

Comments
 (0)