From f69f05c7d008d7dd40109d40894d304e7e97c440 Mon Sep 17 00:00:00 2001 From: Quint Daenen Date: Tue, 24 Sep 2024 19:05:34 +0200 Subject: [PATCH] Fix typo. --- README.md | 1 + common/crust/result.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 14a676c..19431aa 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ u, _ := url.Parse("http://localhost:8000") config := agent.Config{ ClientConfig: &agent.ClientConfig{Host: u}, FetchRootKey: true, + DisableSignedQueryVerification: true, } ``` diff --git a/common/crust/result.go b/common/crust/result.go index b4ef18a..159a6ad 100644 --- a/common/crust/result.go +++ b/common/crust/result.go @@ -1,4 +1,4 @@ -package cmotoko +package crust // Result is a generic type that represents either success (Ok) or failure (Err). // It is used as the return type of functions which may fail.