Skip to content

Commit c79b05a

Browse files
committed
fix #201 add ~ to similar characters
1 parent c393465 commit c79b05a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

modules/samples.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const Bash =
4848
set -e
4949
5050
NUMERALS=1234567890
51-
SIMILAR="oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_="
51+
SIMILAR="oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~-_="
5252
DIACRITICS_ETC="â é ù ï ø ç Ã Ē Æ œ"
5353
5454
CD_CMD="cd "\\\"$(pwd)\\\"" && clear"
@@ -89,7 +89,7 @@ import sublime
8989
from pathlib import PurePath
9090
9191
NUMERALS = 1234567890
92-
SIMILAR = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_="
92+
SIMILAR = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~-_="
9393
DIACRITICS_ETC = "â é ù ï ø ç Ã Ē Æ œ"
9494
9595
class SideBarDuplicateCommand(SideBarCommand):
@@ -128,7 +128,7 @@ use Symfony\Component\Routing\Attribute\Route;
128128
class 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

155155
const CSS =
156156
`--numerals: 1234567890;
157-
--similar: "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_=";
157+
--similar: "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~-_=";
158158
--diacritics-etc: "â é ù ï ø ç Ã Ē Æ œ";
159159
160160
button {
@@ -208,7 +208,7 @@ const Go =
208208
`package main
209209
210210
var u uint = 1234567890
211-
const similar = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_="
211+
const similar = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~-_="
212212
const diacritics = "â é ù ï ø ç Ã Ē Æ œ"
213213
214214
import (
@@ -268,7 +268,7 @@ const JS =
268268
import { Samples } from './samples.js'
269269
270270
const numerals = 1234567890
271-
const similar = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: -_="
271+
const similar = "oO08 iIlL1 g9qCGQ 8%& <([{}])> .,;: ~-_="
272272
const diacritics_etc = "â é ù ï ø ç Ã Ē Æ œ"
273273
274274
export 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

Comments
 (0)