Skip to content

Commit 8741c20

Browse files
committed
fix tiny_wiki typo
1 parent 856d994 commit 8741c20

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Fruit_Jam/Fruit_Jam_Tiny_Wiki/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- SPDX-FileCopyrightText: 2026 Tim Cocks for Adafruit Industries -->
22
<!-- SPDX-License-Identifier: MIT -->
3-
<!-- Adapted from pages found in [tini_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
3+
<!-- Adapted from pages found in [tiny_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
44
<!DOCTYPE html>
55
<html>
66
<head>

Fruit_Jam/Fruit_Jam_Tiny_Wiki/templates/edit_page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- SPDX-FileCopyrightText: 2026 Tim Cocks for Adafruit Industries -->
22
<!-- SPDX-License-Identifier: MIT -->
3-
<!-- Adapted from pages found in [tini_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
3+
<!-- Adapted from pages found in [tiny_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
44

55
{% extends "templates/base.html" %}
66

Fruit_Jam/Fruit_Jam_Tiny_Wiki/templates/list_pages.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- SPDX-FileCopyrightText: 2026 Tim Cocks for Adafruit Industries -->
22
<!-- SPDX-License-Identifier: MIT -->
3-
<!-- Adapted from pages found in [tini_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
3+
<!-- Adapted from pages found in [tiny_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
44

55
{% extends "templates/base.html" %}
66

Fruit_Jam/Fruit_Jam_Tiny_Wiki/templates/new_page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- SPDX-FileCopyrightText: 2026 Tim Cocks for Adafruit Industries -->
22
<!-- SPDX-License-Identifier: MIT -->
3-
<!-- Adapted from pages found in [tini_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
3+
<!-- Adapted from pages found in [tiny_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
44

55
{% extends "templates/base.html" %}
66

Fruit_Jam/Fruit_Jam_Tiny_Wiki/templates/view_page_exists.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- SPDX-FileCopyrightText: 2026 Tim Cocks for Adafruit Industries -->
22
<!-- SPDX-License-Identifier: MIT -->
3-
<!-- Adapted from pages found in [tini_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
3+
<!-- Adapted from pages found in [tiny_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
44

55
{% extends "templates/base.html" %}
66

Fruit_Jam/Fruit_Jam_Tiny_Wiki/templates/view_page_missing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- SPDX-FileCopyrightText: 2026 Tim Cocks for Adafruit Industries -->
22
<!-- SPDX-License-Identifier: MIT -->
3-
<!-- Adapted from pages found in [tini_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
3+
<!-- Adapted from pages found in [tiny_wiki for Micropython by Kevin McAleer](https://github.com/kevinmcaleer/tiny_wiki) -->
44

55
{% extends "templates/base.html" %}
66

Fruit_Jam/Fruit_Jam_Tiny_Wiki/tiny_wiki/markdown.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-FileCopyrightText: 2026 Tim C, written for Adafruit Industries
22
#
33
# SPDX-License-Identifier: MIT
4-
# Adapted from files found in tini_wiki for Micropython by Kevin McAleer:
4+
# Adapted from files found in tiny_wiki for Micropython by Kevin McAleer:
55
# https://github.com/kevinmcaleer/tiny_wiki
66
import re
77

Fruit_Jam/Fruit_Jam_Tiny_Wiki/tiny_wiki/wiki_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-FileCopyrightText: 2026 Tim C, written for Adafruit Industries
22
#
33
# SPDX-License-Identifier: MIT
4-
# Adapted from files found in tini_wiki for Micropython by Kevin McAleer:
4+
# Adapted from files found in tiny_wiki for Micropython by Kevin McAleer:
55
# https://github.com/kevinmcaleer/tiny_wiki
66
import os
77
import board

0 commit comments

Comments
 (0)