Skip to content

Commit ed09ebc

Browse files
committed
Fixed links to dotnet and go
1 parent e394b89 commit ed09ebc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/develop/dotnet/nexus/feature-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public IOperationHandler<INexusGreetingService.GetLanguagesInput, INexusGreeting
195195
...
196196
```
197197

198-
There are two examples of messaging through Nexus in the sample code: the [caller pattern](https://github.com/temporalio/samples-dotnet/tree/src/NexusMessaging/CallerPattern/) and the [on-demand pattern](https://github.com/temporalio/samples-dotnet/tree/src/NexusMessaging/OnDemandPattern/).
198+
There are two examples of messaging through Nexus in the sample code: the [caller pattern](https://github.com/temporalio/samples-dotnet/tree/main/src/NexusMessaging/CallerPattern) and the [on-demand pattern](https://github.com/temporalio/samples-dotnet/tree/main/src/NexusMessaging/OnDemandPattern).
199199
The caller pattern shows how to send messages to an existing Workflow, while the on-demand pattern shows how to start a Workflow through Nexus and then send Signals to it.
200200

201201
### Develop an Asynchronous Nexus Operation handler to start a Workflow

docs/develop/go/nexus/feature-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ The [nexus_messaging](https://github.com/temporalio/samples-go/tree/main/nexus-m
179179
Use the Nexus library, as shown below, to get the Client that the Worker was initialized with. In this example, the Workflow Id is derived from the client Id, with the `GetWorkflowID` method. This converts a given client Id (in this case, the client is passing in a user Id) to generate a Workflow Id from it.
180180
This way the client only needs the identifier it cares about.
181181

182-
[nexus-messaging/callerpattern/handler/app.go](https://github.com/temporalio/samples-go/blob/nexus-messaging/callerpattern/handler/app.go)
182+
[nexus-messaging/callerpattern/handler/app.go](https://github.com/temporalio/samples-go/blob/main/nexus-messaging/callerpattern/handler/app.go)
183183

184184
```go
185185
func GetWorkflowID(userID string) string {

0 commit comments

Comments
 (0)