Skip to content

Commit

Permalink
Correct the URLs for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell committed Jun 7, 2024
1 parent c84e7a5 commit 7e429d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<a href="https://www.falu.io">
<a href="https://falu.io">
<img src="falu-logo.png" alt="Falu Logo" title="Falu" width="120" height="120" align="right">
</a>

Expand Down Expand Up @@ -252,9 +252,9 @@ For any requests, bug or comments, please [open an issue][issues] or [submit a p

The Library is licensed under the [MIT](http://www.opensource.org/licenses/mit-license.php "Read more about the MIT license form") license. Refer to the [LICENSE](./LICENSE) file for more information.

[api-docs]: https://docs.falu.io/api?lang=dotnet
[api-docs]: https://falu.io/docs/api?lang=dotnet
[dotnet-core-cli-tools]: https://docs.microsoft.com/en-us/dotnet/core/tools/
[idempotency-keys]: https://docs.falu.io/api/idempotent_requests?lang=dotnet
[idempotency-keys]: https://falu.io/docs/api/idempotent_requests?lang=dotnet
[issues]: https://github.com/faluapp/falu-dotnet/issues/new
[nuget-cli]: https://docs.microsoft.com/en-us/nuget/tools/nuget-exe-cli-reference
[package-manager-console]: https://docs.microsoft.com/en-us/nuget/tools/package-manager-console
Expand Down
2 changes: 1 addition & 1 deletion src/FaluSdk/Extensions/CloudEventExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static partial class CloudEventExtensions
/// <param name="event">The received <see cref="CloudEvent"/>.</param>
/// <returns>The deserialized <see cref="WebhookEvent{TObject}"/>.</returns>
/// <remarks>
/// This method doesn't verify <a href="https://docs.falu.io/webhooks/signatures">webhook signatures</a>.
/// This method doesn't verify <a href="https://falu.io/docs/webhooks/signatures">webhook signatures</a>.
/// Use <see cref="WebhookUtility.ValidateSignature(byte[], string, string, TimeSpan?, DateTimeOffset?)"/> for validation.
/// </remarks>
public static WebhookEvent<T>? ToFaluWebhookEvent<T>(this CloudEvent @event)
Expand Down
2 changes: 1 addition & 1 deletion src/FaluSdk/FaluClientConfigureOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public ValidateOptionsResult Validate(string? name, TClientOptions options)
{
var message = "Your API key is invalid, as it is an empty string. You can "
+ "double-check your API key from the Falu Dashboard. See "
+ "https://docs.falu.io/api/authentication for details or contact support "
+ "https://falu.io/docs/api/authentication for details or contact support "
+ "at https://falu.com/support/email if you have any questions.";
return ValidateOptionsResult.Fail(message);
}
Expand Down

0 comments on commit 7e429d8

Please sign in to comment.