]> www.git.dmfe.net Git - dmfe-website/commitdiff
Remove kotlin and groovy utf symbols.
authorDmitry Fedotov <dm.fe@yandex.ru>
Mon, 15 Apr 2024 20:57:18 +0000 (23:57 +0300)
committerDmitry Fedotov <dm.fe@yandex.ru>
Mon, 15 Apr 2024 20:57:18 +0000 (23:57 +0300)
docs/gradle/core-concepts/build_file_basics.md
docs/gradle/core-concepts/settings_file_basics.md

index 5accb75f575d48373c0343bb4ceb175ef27a5a0c..7cc48e74171583eb7879e981497761c3568fd408 100644 (file)
@@ -24,7 +24,7 @@ The build script is either a `build.gradle` file written in Groovy or a
 Example of the build script:
 <Tabs>
   <TabItem value="kotlin" label="Kotlin" default>
-        ```kotlin title="󱈙 settings.gradle.kts"
+        ```kotlin title="settings.gradle.kts"
         plugins {
             id("application")               (1)
         }
@@ -35,7 +35,7 @@ Example of the build script:
         ```
   </TabItem>
   <TabItem value="groovy" label="Groovy">
-        ```groovy title=" settings.gradle"
+        ```groovy title="settings.gradle"
         plugins {
             id 'application'                (1)
         }
index 7dec86c14265e94ae2fdd407bd1ecc9af4ce0db2..0f344cc30bc600364e6e811572a95a63866b72ba 100644 (file)
@@ -25,7 +25,7 @@ The _Groovy DSL_ and _Kotlin DSL_ are the only accepted languages for Gradle scr
 The settings file is typically found in the root directory of the project:
 <Tabs>
   <TabItem value="kotlin" label="Kotlin" default>
-        ```kotlin title="󱈙 settings.gradle.kts"
+        ```kotlin title="settings.gradle.kts"
         rootProject.name = "root-project"   (1)
 
         include("sub-project-a")            (2) 
@@ -34,7 +34,7 @@ The settings file is typically found in the root directory of the project:
         ```
   </TabItem>
   <TabItem value="groovy" label="Groovy">
-        ```groovy title=" settings.gradle"
+        ```groovy title="settings.gradle"
         rootProject.name = 'root-project'   (1)
 
         include('sub-project-a')            (2)