Skip to content

Commit 9e39828

Browse files
KobzolMark-Simulacrum
authored andcommitted
Fix incr patch of include-blob
1 parent 9a5818a commit 9e39828

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
diff --git a/src/main.rs b/src/main.rs
2-
index 9cb1671e..fc854410 100644
2+
index 3f07848e..f0c0dc70 100644
33
--- a/src/main.rs
44
+++ b/src/main.rs
5-
@@ -6,5 +6,5 @@ fn main() {
6-
"Binary blob last element: {}",
7-
BLOB_BINARY[BLOB_BINARY.len() - 1]
8-
);
9-
- println!("String blob: {BLOB_STRING}");
10-
+ println!("String blob contents: {BLOB_STRING}");
5+
@@ -3,5 +3,5 @@ const BLOB_STRING: &str = include_str!(concat!(env!("OUT_DIR"), "/blob-string"))
6+
7+
fn main() {
8+
println!("Binary blob: {BLOB_BINARY:?}");
9+
- println!("String blob: {BLOB_STRING:?}");
10+
+ println!("String blob contents: {BLOB_STRING:?}");
1111
}

0 commit comments

Comments
 (0)