Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion EMBEDDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ to the documentation files using the tool. The most important points here are:

If you encounter an error indicating that the executable file cannot be run,
it likely does not have execution permissions. To grant execution rights
on Linux or macOS, run the following command from the `_code` directory:
on Linux or macOS, run the following command from the `docs/_bin` directory:

```shell
chmod +x embed-code-macos
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
* Copyright 2020, TeamDev. All rights reserved.
* Copyright 2026, TeamDev. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* https://www.apache.org/licenses/LICENSE-2.0
*
* Redistribution and use in source and/or binary forms, with or without
* modification, must retain the above copyright notice and the following
Expand All @@ -23,6 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

syntax = "proto3";

package spine.site.home;
Expand All @@ -31,7 +32,7 @@ import "spine/options.proto";

option (type_url_prefix) = "type.spine.io";
option java_package = "io.spine.site.home.event";
option java_outer_classname = "CommandsProto";
option java_outer_classname = "EventsProto";
option java_multiple_files = true;

import "spine/site/home/identifiers.proto";
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/guides/gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ domain language with another, add a dependency between them. This way, the downs
use Protobuf definitions of the upstream context.
```groovy
dependencies {
implemetation(project(':model-users'))
implementation(project(':users-model'))
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/content/docs/introduction/naming-conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ message TaskCreated {
lang="proto" >}}
message TaskProjection {
TaskId task = 1;
ProjectId project = 2
ProjectId project = 2;
string name = 3;
}
{{< /code-with-label >}}
Expand Down Expand Up @@ -320,7 +320,7 @@ a command message.

#### Events

Similarly to commands, we recommend putting events generated by an entity under the `entity`
Similarly to commands, we recommend putting events generated by an entity under the `event`
sub-package:

* `io.acme.todolist.task.event`
Expand Down Expand Up @@ -412,7 +412,7 @@ of a programming language.
#### Factory classes

A Java class that creates and configures an instance of a `BoundedContext` is named after the
name of the context with the `Context` prefix:
name of the context with the `Context` suffix:

* `UsersContext`
* `DeliveredOrdersContext`
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/resources/people.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The creators and drivers of the DDD ideas.
{"url":"https://x.com/ericevans0", "icon":"fab fa-twitter"}
]`>}}
The author of the DDD methodology. Domain linguist. The author
of&nbsp;“Domain-Driven Design: Tackling Complexity in Software”.
of&nbsp;“Domain-Driven Design: Tackling Complexity in the Heart of Software”.
{{< /person-card >}}

{{< person-card
Expand Down
Loading