aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/blog
diff options
context:
space:
mode:
authorJoel Spadin <[email protected]>2023-04-22 23:25:56 -0500
committerPete Johanson <[email protected]>2023-04-24 16:07:04 -0700
commit94061bb91629a83cfe251e63799a9be04a1564d4 (patch)
treedea287a5a6274d2a0aeed21d280031f58d0ee0c8 /docs/blog
parent32ae776c42215d7302ab47787cbfb47298ccb532 (diff)
downloadzmk-94061bb91629a83cfe251e63799a9be04a1564d4.tar.gz
zmk-94061bb91629a83cfe251e63799a9be04a1564d4.zip
refactor: Replace tabs with spaces
Standardized indentation to use spaces with a new pre-commit hook.
Diffstat (limited to 'docs/blog')
-rw-r--r--docs/blog/2020-10-03-bootloader-fix.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/blog/2020-10-03-bootloader-fix.md b/docs/blog/2020-10-03-bootloader-fix.md
index 8a9fd7f800..ec1d7b0ba7 100644
--- a/docs/blog/2020-10-03-bootloader-fix.md
+++ b/docs/blog/2020-10-03-bootloader-fix.md
@@ -175,19 +175,19 @@ do is shift back the settings area and code space `0xC000` bytes. We'll apply
this to all of the `.dts` files for the boards that were affected by this issue.
```diff
- code_partition: partition@26000 {
- label = "code_partition";
-- reg = <0x00026000 0x000d2000>;
-+ reg = <0x00026000 0x000c6000>;
- };
-
-
-- storage_partition: partition@f8000 {
-+ storage_partition: partition@ec000 {
- label = "storage";
-- reg = <0x000f8000 0x00008000>;
-+ reg = <0x000ec000 0x00008000>;
- };
+ code_partition: partition@26000 {
+ label = "code_partition";
+- reg = <0x00026000 0x000d2000>;
++ reg = <0x00026000 0x000c6000>;
+ };
+
+
+- storage_partition: partition@f8000 {
++ storage_partition: partition@ec000 {
+ label = "storage";
+- reg = <0x000f8000 0x00008000>;
++ reg = <0x000ec000 0x00008000>;
+ };
```
And with those changes, we should no longer run into this issue! In the process