chore(i18n,learn): processed translations (#44750)

This commit is contained in:
camperbot
2022-01-11 22:27:22 +05:30
committed by GitHub
parent 43f970aa3f
commit b7496d96dd
14 changed files with 62 additions and 62 deletions

View File

@ -89,7 +89,7 @@ assert(
const bookList = ["The Hound of the Baskervilles", "On The Electrodynamics of Moving Bodies", "Philosophiæ Naturalis Principia Mathematica", "Disquisitiones Arithmeticae"];
// Change code below this line
function add (bookName) {
function add(bookName) {
bookList.push(bookName);
return bookList;
@ -98,7 +98,7 @@ function add (bookName) {
}
// Change code below this line
function remove (bookName) {
function remove(bookName) {
const book_index = bookList.indexOf(bookName);
if (book_index >= 0) {