aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/patches
diff options
context:
space:
mode:
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/024_errors4.patch2
-rw-r--r--patches/patches/059_integers.patch8
-rw-r--r--patches/patches/083_anonymous_lists.patch4
3 files changed, 7 insertions, 7 deletions
diff --git a/patches/patches/024_errors4.patch b/patches/patches/024_errors4.patch
index 5996a99..48e0821 100644
--- a/patches/patches/024_errors4.patch
+++ b/patches/patches/024_errors4.patch
@@ -5,6 +5,6 @@
> if (err == MyNumberError.TooSmall) {
> return 10;
> }
->
+>
> return err;
> };
diff --git a/patches/patches/059_integers.patch b/patches/patches/059_integers.patch
index 50a89a0..7075ebe 100644
--- a/patches/patches/059_integers.patch
+++ b/patches/patches/059_integers.patch
@@ -1,8 +1,8 @@
22,24c22,24
-< 0o131, // octal
+< 0o131, // octal
< 0b1101000, // binary
-< 0x66, // hex
+< 0x66, // hex
---
-> 0o132, // octal
+> 0o132, // octal
> 0b1101001, // binary
-> 0x67, // hex
+> 0x67, // hex
diff --git a/patches/patches/083_anonymous_lists.patch b/patches/patches/083_anonymous_lists.patch
index b981909..94b594b 100644
--- a/patches/patches/083_anonymous_lists.patch
+++ b/patches/patches/083_anonymous_lists.patch
@@ -1,4 +1,4 @@
23c23
-< const hello = .{'h', 'e', 'l', 'l', 'o'};
+< const hello = .{ 'h', 'e', 'l', 'l', 'o' };
---
-> const hello: [5]u8 = .{'h', 'e', 'l', 'l', 'o'};
+> const hello: [5]u8 = .{ 'h', 'e', 'l', 'l', 'o' };