Skip to content

Commit 40bf0fd

Browse files
committed
chore: Ensure consistent trailing newlines in documentation and source files
1 parent fa79337 commit 40bf0fd

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ We welcome contributions! Please see our [Contributing Guide](../CONTRIBUTING.md
7272

7373
## 📝 License
7474

75-
KPaper is licensed under the GPL-3.0 License. See [LICENSE](../LICENSE) for details.
75+
KPaper is licensed under the GPL-3.0 License. See [LICENSE](../LICENSE) for details.

docs/api/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1121,4 +1121,4 @@ class PlayerAdminSubcommand {
11211121
- [Events](events.md) - Handling command-related events
11221122
- [Inventory](inventory.md) - Creating command-triggered GUIs
11231123
- [Utilities](utilities.md) - Helper functions for commands
1124-
- [Examples](../examples/common-patterns.md) - Command patterns and examples
1124+
- [Examples](../examples/common-patterns.md) - Command patterns and examples

docs/api/inventory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,4 +595,4 @@ class GUIManager {
595595
- [Events](events.md) - Handling inventory events
596596
- [Extensions](extensions.md) - Inventory-related extensions
597597
- [Utilities](utilities.md) - Helper functions for items
598-
- [Examples](../examples/common-patterns.md) - GUI examples and patterns
598+
- [Examples](../examples/common-patterns.md) - GUI examples and patterns

docs/api/utilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,4 +659,4 @@ if (someCondition) {
659659
}
660660
```
661661

662-
The utility functions and extensions in KPaper significantly reduce boilerplate code and make Minecraft plugin development more enjoyable and maintainable. Use them liberally to write cleaner, more expressive code!
662+
The utility functions and extensions in KPaper significantly reduce boilerplate code and make Minecraft plugin development more enjoyable and maintainable. Use them liberally to write cleaner, more expressive code!

docs/core/plugin-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,4 +689,4 @@ class DebugTools(private val plugin: KPlugin) {
689689
}
690690
```
691691

692-
These patterns and practices will help you build robust, maintainable KPaper plugins that scale well and provide a great user experience.
692+
These patterns and practices will help you build robust, maintainable KPaper plugins that scale well and provide a great user experience.

docs/examples/common-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,4 +922,4 @@ class ExternalAPIService {
922922
}
923923
```
924924

925-
These patterns provide a solid foundation for building robust, maintainable KPaper plugins. Mix and match them as needed for your specific use case!
925+
These patterns provide a solid foundation for building robust, maintainable KPaper plugins. Mix and match them as needed for your specific use case!

docs/reference/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,4 +688,4 @@ Brief description of the issue
688688
```
689689
```
690690

691-
Remember: Most issues are configuration-related or due to conflicts with other plugins. Always test with minimal setup first!
691+
Remember: Most issues are configuration-related or due to conflicts with other plugins. Always test with minimal setup first!

src/main/kotlin/cc/modlabs/kpaper/main/FeatureConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ class FeatureConfigBuilder {
9999
* DSL entry point to build a FeatureConfig.
100100
*/
101101
fun featureConfig(block: FeatureConfigBuilder.() -> Unit): FeatureConfig =
102-
FeatureConfigBuilder().apply(block).build()
102+
FeatureConfigBuilder().apply(block).build()

src/main/kotlin/cc/modlabs/kpaper/main/KPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ abstract class KPlugin : JavaPlugin() {
7272

7373
shutdown()
7474
}
75-
}
75+
}

0 commit comments

Comments
 (0)