From 6eafff7ba2594dbc0449c204d9ef7a49b86a5776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Vr=C3=A1na?= Date: Mon, 30 Aug 2021 10:04:27 +0200 Subject: [PATCH] Fix typos --- Compile-Adminer-with-Plugin(s)-and-Design.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/Compile-Adminer-with-Plugin(s)-and-Design.md b/Compile-Adminer-with-Plugin(s)-and-Design.md index 6f37735..78aa58f 100644 --- a/Compile-Adminer-with-Plugin(s)-and-Design.md +++ b/Compile-Adminer-with-Plugin(s)-and-Design.md @@ -4,12 +4,12 @@ It is possible to compile a specific version of Adminer with only one translatio Usage: php compile.php [editor] [driver] [lang] Purpose: Compile adminer[-driver][-lang].php or editor[-driver][-lang].php. ``` -So by adding files and/or pieces of code to the Adminer sources before the compilation, it's possible to **compiled a custom version of Adminer**. +So by adding files and/or pieces of code to the Adminer sources before the compilation, it's possible to **compile a custom version of Adminer**. ## `compile.sh` ### Add plugin(s) -The [`compile.sh`](https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer/blob/master/compile.sh) from the [LoginToASqlite3DatabaseWithoutCredentialsWithAdminer](https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer) repository is written to embedded this plugin but it can be easily modified to embedded any other plugin(s) in a dedicated version of Adminer: +The [`compile.sh`](https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer/blob/master/compile.sh) from the [LoginToASqlite3DatabaseWithoutCredentialsWithAdminer](https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer) repository is written to embed this plugin but it can be easily modified to embedded any other plugin(s) in a dedicated version of Adminer: ```bash echo -e "\n$step. Load plugin's sources:\n" ((step+=1)) @@ -27,7 +27,7 @@ EOPHP ``` ### Add Adminer design -The script can also embedded design: +The script can also embed design: ```bash design=$2 echo -e "\n$step. Set the design: $design\n" @@ -35,8 +35,3 @@ echo -e "\n$step. Set the design: $design\n" cp $CSS_FILE $CSS_FILE.backup cat $CSS_FILE.backup $DESIGNS_DIR/$design/adminer.css > $CSS_FILE ``` - - - - - \ No newline at end of file