Skip to content

Commit

Permalink
update witness examples
Browse files Browse the repository at this point in the history
  • Loading branch information
suaviloquence committed Sep 18, 2024
1 parent 69e0ccd commit 1651ed1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,12 +283,12 @@ The failed test should output a message like:
(
filename: "src/lib.rs",
begin_line: 1,
hint: "use function_missing::will_be_removed_fn;\nwill_be_removed_fn(...);",
hint: "function_missing::will_be_removed_fn(...);",
),
(
filename: "src/lib.rs",
begin_line: 4,
hint: "use function_missing::pub_use_removed_fn;\npub_use_removed_fn(...);",
hint: "function_missing::pub_use_removed_fn(...);",
),
],
}
Expand All @@ -302,12 +302,12 @@ Differences (-expected|+actual):
+ (
+ filename: "src/lib.rs",
+ begin_line: 1,
+ hint: "use function_missing::will_be_removed_fn;\nwill_be_removed_fn(...);",
+ hint: "function_missing::will_be_removed_fn(...);",
+ ),
+ (
+ filename: "src/lib.rs",
+ begin_line: 4,
+ hint: "use function_missing::pub_use_removed_fn;\npub_use_removed_fn(...);",
+ hint: "function_missing::pub_use_removed_fn(...);",
+ ),
+ ],
+}
Expand Down

0 comments on commit 1651ed1

Please # to comment.