@@ -48,7 +48,7 @@ const Bash =
4848set -e
4949
5050NUMERALS=1234567890
51- SIMILAR="oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_="
51+ SIMILAR="oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~ -_="
5252DIACRITICS_ETC="â é ù ï ø ç Ã Ē Æ œ"
5353
5454CD_CMD="cd "\\\"$(pwd)\\\"" && clear"
@@ -89,7 +89,7 @@ import sublime
8989from pathlib import PurePath
9090
9191NUMERALS = 1234567890
92- SIMILAR = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_="
92+ SIMILAR = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~ -_="
9393DIACRITICS_ETC = "â é ù ï ø ç Ã Ē Æ œ"
9494
9595class SideBarDuplicateCommand(SideBarCommand):
@@ -128,7 +128,7 @@ use Symfony\Component\Routing\Attribute\Route;
128128class LuckyController
129129{
130130 const NUMERALS = 1234567890;
131- const SIMILAR = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_=";
131+ const SIMILAR = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~ -_=";
132132 const DIACRITICS_ETC = "â é ù ï ø ç Ã Ē Æ œ";
133133
134134 #[Route('/lucky/number/{max}', name: 'app_lucky_number')]
@@ -154,7 +154,7 @@ class LuckyController
154154
155155const CSS =
156156`--numerals: 1234567890;
157- --similar: "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_=";
157+ --similar: "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~ -_=";
158158--diacritics-etc: "â é ù ï ø ç Ã Ē Æ œ";
159159
160160button {
@@ -208,7 +208,7 @@ const Go =
208208`package main
209209
210210var u uint = 1234567890
211- const similar = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_="
211+ const similar = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~ -_="
212212const diacritics = "â é ù ï ø ç Ã Ē Æ œ"
213213
214214import (
@@ -268,7 +268,7 @@ const JS =
268268import { Samples } from './samples.js'
269269
270270const numerals = 1234567890
271- const similar = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_="
271+ const similar = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~ -_="
272272const diacritics_etc = "â é ù ï ø ç Ã Ē Æ œ"
273273
274274export class Language {
@@ -400,7 +400,7 @@ class OrdersController < ApplicationController
400400 before_action :set_order, except: %i[index new create]
401401
402402 NUMERALS = 1234567890
403- SIMILAR = 'oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_='
403+ SIMILAR = 'oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~ -_='
404404 DIACRITICS_ETC = 'â é ù ï ø ç Ã Ē Æ œ'
405405
406406 def index
0 commit comments